Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Saturday, July 04, 2009

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP.NET 2.0
Search:
What's New - What's Hot
Listings for Administrative Features Administrative Features (20)
Listings for AdOns AdOns (7)
Listings for Assembly Assembly (10)
Listings for Browsers Browsers (9)
Listings for Cache Cache (59)
Listings for Class Libraries Class Libraries (27)
Listings for Code Generation Code Generation (18)
More Categories for Code Management Code Management (13)
Listings for Compiler Compiler (14)
Listings for Components Components (7)
Listings for Configuration Configuration (92)
Listings for Custom Control Custom Control (203)
Listings for Data Binding Data Binding (37)
More Categories for DataBase DataBase (250)
Listings for Deployment Deployment (27)
Listings for Design and Architecture Design and Architecture (275)
Listings for Email Email (52)
Listings for Event Handling Event Handling (29)
Listings for Exception Handling Exception Handling (26)
Listings for FAQ FAQ (1)
Listings for File Management File Management (34)
Listings for Form Handling Form Handling (8)
Listings for Graphics and Charts Graphics and Charts (71)
Listings for Language Reference Language Reference (22)
Listings for Master Pages Master Pages (104)
Listings for Microsoft Office Microsoft Office (54)
Listings for Migration to ASP.Net 2.0 Migration to ASP.Net 2.0 (44)
Listings for Miscellaneous Miscellaneous (213)
Listings for Reflection Reflection (7)
Listings for Regular Expression Regular Expression (11)
Listings for Remoting Remoting (15)
Listings for Reports Reports (13)
Listings for RSS RSS (9)
Listings for Scripting Scripting (89)
Listings for Security Security (81)
More Categories for Server Application Server Application (138)
More Categories for Server Controls Server Controls (346)
Listings for Server Variables Server Variables (9)
Listings for Site Navigation Site Navigation (59)
Listings for StarterKit StarterKit (30)
More Categories for State Management State Management (19)
Listings for Style Features Style Features (153)
Listings for Threading Threading (12)
Listings for Tips & Tricks Tips & Tricks (157)
Listings for Tracing and Debugging Tracing and Debugging (22)
Listings for User Control User Control (90)
Listings for User Management User Management (36)
Listings for View State View State (37)
More Categories for Web Application Web Application (13)
Listings for Web Development Web Development (88)
Listings for Web Forms Web Forms (41)
Listings for Web Services Web Services (78)
Listings for XML and ASP.Net 2.0 XML and ASP.Net 2.0 (98)
 


Enable Gzip compression in IIS 6.0 for ASP.NET 2.0 websites        
Total Hits: 0  |  Today: 0 Author: ToddHileHoffer       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step by step guide will show you how to enable Gzip compression to work with ASP.NET 2.0. Compressing the output should make your websites faster, especially when being viewed via a slow connection...

Accessing data from dynamically created controls, using ASP.NET 2.0 callback        
Total Hits: 0  |  Today: 0 Author: vineyard       Rating:  
Read Reviews | Write Review |   Your Rating: 

While developing with ASP.NET 2.0, I ran into a situation where I needed to create controls dynamically. As usual, I started looking for best practice methods by searching the websites and blogs I often turn to. Every example I found talked about the need to recreate the dynamically created controls on postback in order to retrieve the data the user had input or altered. This makes sense: after all, without the controls, the viewstate data for the controls has become orphan data. What if you no ...

Backup and Restore Session in .Net 2.0        
Total Hits: 1  |  Today: 1 Author: Crooze21       Rating:  
Read Reviews | Write Review |   Your Rating: 

This code backup your session in byte stream. It is useful when you swith the user or emulate the user and need to clear the current session. you can store this byte stream in newly created session as a session veriable and it is so simple to retrive the old session data from that byte stream. This is very useful when you are using SQL memebership provider and maintaining signin and signout using cookies....

Building a dynamic SiteMap in ASP.NET 2.0 for a large website        
Total Hits: 1  |  Today: 1 Author: dB.       Rating:  
Read Reviews | Write Review |   Your Rating: 

Sitemaps and breadcrumbs (SiteMapPath) are useful and easy to implement for a static site with a sitemap file. For dynamic sites, something as simple seems to get much more complicated. When I started reading about sitemaps for dynamic sites, I found a common approach: generate a static site map for the whole website from, for example, a data source. Re-generate periodically. Use the XmlSiteMapProvider. Cache. The technique is described in this CodeProject article....

Implement Multi Language Support for Client Side Validations in ASP.NET 3.5        
Total Hits: 0  |  Today: 0 Author: Aneesur Rehman Khan       Rating:  
Read Reviews | Write Review |   Your Rating: 

A few days ago, I was working on my applications to enable them for multiple languages (English, French and Japanese) to address audiences of different regions.

Enabling an aspx page for multiple languages is very easy and for doing so, we need to maintain resource files (*.resx) for each and every language, and easily generate resource file(s).

To generate resource files, open aspx page in design mode, then go to Tools-->Generate Local resource....

Build a Web Chat Application using ASP.Net 3.5, LINQ and AJAX (in C# 3.5 or VB 9.0)        
Total Hits: 0  |  Today: 0 Author: junnark       Rating:  
Read Reviews | Write Review |   Your Rating: 

A Java Programmer friend of mine once asked me if I have ever built a web chat application. I said "No". He then asked me if I were to build a really simple, monitored, bare minimum, working web chat application, how long do I think will it take (something to that effect). I said, "I don't know". A few days had passed, one lazy evening, I was surfing the web looking for ASP.Net web chat applications. It seems that I can't find one that is simple enough to implement. So I decided to just build so...

ASP.NET 2.0 Custom SQL Server ResourceProvider        
Total Hits: 0  |  Today: 0 Author: Jeff Modzel       Rating:  
Read Reviews | Write Review |   Your Rating: 

I was working on a medium-sized ASP.NET 2.0 web application that had a requirement for internationalization/globalization. The default method for internationalization in ASP.NET 2.0 uses XML .resx resource files to store language specific resources. Generally speaking, there is a one-to-many relationship between .aspx files and .resx files. Every new .aspx file will require one or more .resx files. The development and maintenance of the .resx files will become an issue as a web application grows...

Globalization and localization demystified in ASP.NET 2.0        
Total Hits: 1  |  Today: 1 Author: Vivek Thakur       Rating:  
Read Reviews | Write Review |   Your Rating: 

Globalization and localization are two important processes which every developer should be aware of while creating global products or applications. Though there are many articles which explain the subject well, I did not find a single resource which explains all important concepts regarding globalization/localization, practically and comprehensively. This article aims to provide practical step-by-step approach to globalizing a web application in ASP.NET 2.0....

Create Drill-Through Reports using ReportViewer in ASP.NET 2.0        
Total Hits: 4  |  Today: 2 Author: ShirleySW       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article provides a step-by-step demo on how to create drill-through reports in local mode using SQL Server 2005, Microsoft Application Blocks, and the ReportViewer control in ASP.NET 2.0....

A simple method to select a row in a GridView Control in ASP.net 2.0        
Total Hits: 2  |  Today: 1 Author: jithucpillai       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is a simple article on how to select a particular row in a GridView control in ASP.net 2.0 using XML as the DataSource ......

How to hide a user control in vs2005        
Total Hits: 1  |  Today: 0 Author: SeaWater       Rating:  
Read Reviews | Write Review |   Your Rating: 

In VS 2003, when you added a web user control to a web form it appeared as an
"box" in design view. This makes it easy to manage multiple user controls in one page.

In VS 2005, when you add a web user control to a web form, it appears as designed....

Syntax Change When Building Controls Dynamically in ASP.NET 2.0        
Total Hits: 1  |  Today: 0 Author: bholliman       Rating:  
Read Reviews | Write Review |   Your Rating: 

This tiny snippet will attempt to save developers that are porting ASP.NET 1.1 code to ASP.NET 2.0 code. Especially if controls are being built dynamically....


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net