ASP.NET » Web Forms

We have 16 Web Forms tutorials, you can see below:


Pushing data into a SharePoint server


Describes a way to push data into a Windows 2003 SharePoint server, from a web form.


Details    Read Tutorial    Views: 293    Rate: 1 (1 votes)    Feb 23 2007 - 11:54

State Management


Web form pages are HTTP-Based, they are stateless, which means they don’t know whether the requests are all from the same client, and pages are destroyed and recreated with each round trip to the server, therefore information will be lost, therefore state management is really an issue .


Details    Read Tutorial    Views: 329    Rate: 5 (1 votes)    Feb 23 2007 - 11:51

ShowModalDialog effect in ASP.NET web forms


How to open modal dialog window in browser (Internet explorer) and do something with parent window when return


Details    Read Tutorial    Views: 404    Rate: 0 (0 votes)    Feb 23 2007 - 11:50

WebForms Automatic Generation Using Reflection (2)


This article continues the series on Web Form automatic generation.


Details    Read Tutorial    Views: 312    Rate: 0 (0 votes)    Feb 23 2007 - 11:49

Transparent web form persistence in ASP.NET


A simple method to create ASP.NET forms that are transparently loaded and saved from/to the database.


Details    Read Tutorial    Views: 289    Rate: 0 (0 votes)    Feb 23 2007 - 11:48

AutoEventWireup attribute in Microsoft ASP.NET Web Forms


An introduction to the AutoEventWireup attribute in Microsoft ASP.NET Web Forms.


Details    Read Tutorial    Views: 262    Rate: 0 (0 votes)    Feb 23 2007 - 11:48

.NET implementation of the SynchronizerToken pattern


An article on resolving the issue of unintentional web form resubmission.


Details    Read Tutorial    Views: 261    Rate: 0 (0 votes)    Feb 23 2007 - 11:46

Preventing Duplicate Record Insertion or Page Refresh on postback of a Web Form


A browser, cookie, session independant method to prevent multiple postbacks and page refreshes when processing web forms.


Details    Read Tutorial    Views: 939    Rate: 0 (0 votes)    Feb 23 2007 - 11:46

Databinding Web Forms to Objects as opposed to Datasets


A step-by-step walkthrough describing how to bind an ASP.NET web form to an object and object collection, as opposed to binding to datatables and fields.


Details    Read Tutorial    Views: 277    Rate: 0 (0 votes)    Feb 23 2007 - 11:45

Automatically Saving Web Form Data


How to automatically save user input in web applications


Details    Read Tutorial    Views: 263    Rate: 0 (0 votes)    Feb 23 2007 - 11:43

Display Server Date and Time in Web Forms


Display Server Date and Time in Web Forms


Details    Read Tutorial    Views: 288    Rate: 0 (0 votes)    Feb 23 2007 - 11:42

Shopping Cart using C#.NET, Web Forms and SQL Server


Shopping cart using C#.NET, Web Forms and SQL Server.


Details    Read Tutorial    Views: 284    Rate: 0 (0 votes)    Feb 23 2007 - 11:41

Submitting Web Form data from one ASP.NET page to another


This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.


Details    Read Tutorial    Views: 554    Rate: 0 (0 votes)    Jan 22 2007 - 12:33

Changing the Background Color of a Web Form Programmatically


.NET offers the ability to alter various Web Form properties at design time: setting a background image, changing the left margins or even altering the text of the title tag. At run time, however, these properties are not immediately available.


Details    Read Tutorial    Views: 339    Rate: 0 (0 votes)    Jan 20 2007 - 17:20

ASP .NET: Web Forms Let You Drag and Drop Your Way to Powerful Web App


Web Forms have the potential to change Web programming by introducing a new programming model built around server-side controls a model in which controls render their own UIs by generating HTML to return to clients and firing events that are handled by server-side scripts. Since all the action takes place on the Web server, virtually any browser can run a Web Forms app. And thanks to Visual Studio .NET, building a Web Forms app is a lot like using Visual Basic: just drop a control onto a form then write an event handler. This article describes the Web Forms programming model, how it fits with ASP .NET, and introduces DataGrid, TextBox, and other classes in the .NET Framework class library.


Details    Read Tutorial    Views: 317    Rate: 0 (0 votes)    Jan 20 2007 - 17:16

ASP.NET Session State


Session state is nothing more than memory in the shape of a dictionary or hash table, e.g. key-value pairs, which can be set and read for the duration of a user\'s session.


Details    Read Tutorial    Views: 1044    Rate: 5 (1 votes)    Nov 03 2005 - 15:24