AspDotNetAtoms.com provides daily updates on ASP.NET Tutorials, Programming Resources, .NET Articles, Authors and more.
Categories
Recent Posts
- Handling Files and Directories from your web applications. : Rockin J
Using C#, VB.NET, and ASP.NET to get all files of directory and subdirectory. Simply illustration of - Animated Popup Master/Detail using GridView, DetailsView and JQuery with jqModal & UpdatePanel : Muhammad Mosa
Demonstrate how to build master/details data presentation using GridView, DetailsView as animated pop - Understanding Script Injection Attacks : Sanjit Sil
This article helps to understand the concept of script injection attacks in detail using ASP.NET. Sanjit - Designing An Application Using Test Driven Development : Mohammad Azam
Application design is one of the most important aspects of creating the application. A design serves - Cross-Site Scripting in ASP.NET : SandeepReddy Pasham
Cross-site scripting attacks exploit vulnerabilities in Web page validation by injecting client-side
A Guide to the ASP.NET 2.0 Wizard Control : Steve C. Orr
Monday, July 28 2008
Creating a wizard in ASP.NET 1.x had the potential to be a bit tricky. The first thought would likely be to put each wizard step on its own page. However, this has many drawbacks, such as code (and user interface) duplication and maintaining state between each page. Therefore, most Web developers tended to lean toward keeping each wizard step in its own panel within a single page. Each panel is shown and hidden in succession, with only the panel representing the current step being visible at any one time. Because the page posts back to itself between each step, all data is kept in ViewState automatically by ASP.NET, negating the need to manually store user-entered values between each wizard step. Of course, this technique had some downsides, too, such as needing to manage all those different panels at design time. Although not difficult, it certainly makes the design-time appearance of a page much different than the run-time appearance, as all the panels are visible at once at design time. It also required managing many redundant Back and Next buttons for each step of the wizard....Friendly URLs with URL mappings : Marco Bellinaso
Formatting data in columns with ASP.NET's DataList control : Tony Patton
Formatting the DataList and Repeater Based Upon Data : Scott Mitchell
How to Popup a Window Using DIV Layer in ASP.NET 1.x/2.x : Bilal Haidar
Three Cures for Common Site Map Ailments : Jeff Prosise

