Asp Tutorials
1. IsPostBack in ASP.net
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: The page exposes the IsPostBack property. This is a read-only Boolean property that indicates if the page or control is being loaded for the first time, or if it is being loaded in response to a client postback. Many expensive operations (such as getting data from a database or populating ListItems) must be performed only the first time the page or control is loaded. If the page is posted to the server and then reloaded, there is no need to repeat the operation. By testing the value of IsPostBack, you can skip the expensive operation, as in the code snippets in Example 1 and Example 2.
2. What is Code-Behind in ASP.net
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: In traditional ASP, the interweaving of script with HTML can produce source control nightmares and difficult-to-maintain ASP pages. ASP.NET addresses this problem by giving programmers the ability to separate the executable code from the presentation code. You write the HTML in a page file (with a .aspx extension), and you write the C# or VB.NET code in he code-behind file (with a .cs or .vb extension, depending on its language), which is another way of saying the "code file behind the form."
3. ASP Versus ASP.NET Events
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: ASP was primarily a linear programming model. It had six events, of which only four were commonly used. ASP.NET, on the other hand, is primarily an event-driven programming model. The application has events, each session has events, and the page and most of the server controls can also raise events. All ASP.NET events are handled on the server. Some events cause an immediate posting to the server, while other events are simply stored until the next time the page is posted back to the server.
4. Lifecycle of a web form in ASP.net
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: A user sits at her browser and types in a URL. A web page appears, with text and images and buttons and so forth. She fills in a text box and clicks on a button. What is going on behind the scenes?
5. Directives in ASP.net
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: Directives are typically located at the top of the appropriate file, although that is not a strict requirement. For example, Application directives are at the top of the global.asax file, and Page directives are at the top of the .aspx files.
6. DataGrid Control in ASP.net
By: Dan Hurwitz and Jesse Liberty : 2009-02-27
Description: The problem with predesigned user controls is typically that they are either simple and therefore too limited to do what you want, or they are powerful and therefore so complex that they are very difficult to learn. The DataGrid control attempts to overcome both of these constraints. Creating a simple DataGrid control couldn't be much easier, yet there is enough power and complexity to keep you quite busy tweaking and modifying the control to do exactly what you want.
7. Advantages of Stored Procedures
By: John Kauffman : 2008-12-01
Description: This article discusses what gives stored procedures their important role in serious database-driven applications. These are the many advantages that stored procedures provide
8. Event Driven Programming in ASP.net
By: Emiley J. : 2008-11-27
Description: Event-driven programming responds to events. An event is generated (or raised) when "something happens," such as the user pressing a button. Often, events are generated by user action, but events can also be generated by the system starting or finishing work. For example, the system might raise an event when a file that you open for reading has been read into memory or when your battery's power is running low.
9. Advantages of ASP.NET
By: Ram Babu : 2008-11-26
Description: ASP.NET has many advantages over other platforms when it comes to creating Web applications. Probably the most significant advantage is its integration with the Windows server and programming tools. Web applications created with ASP.NET are easier to create, debug, and deploy because those tasks can all be performed within a single development environment—Visual Studio .NET.
10. What is ASP.NET?
By: Ram Babu : 2008-11-26
Description: ASP.NET is the platform that you use to create Web applications and Web services that run under IIS. ASP.NET is not the only way to create a Web application. Other technologies, notably the CGI, also enable you to create Web applications. What makes ASP.NET special is how tightly it is integrated with the Microsoft server, programming, data access, and security tools.