Learning how to work with ASP.NET Web Forms is the other thing of âNew Things Learned in the Labor Campâ⊠Iâve avoided confronting ASP.NET âclassicâ directly for years. Instead, I made the right decision to learn things about Web programming and Web design that Microsoft notoriously undervalued in its professional communication for years until the rise of Scott Guthrie from ASP.NET âclassicâ to ASP.NET MVC.
Sadly, there is a job market full of IT shops that are deeply invested (often emotionally invested) in ASP.NET â1.9ââthe way of seeing the Web through the Microsoft looking glass just before ASP.NET 2.0 was released in 2005.
For years Iâve ârun awayâ from confronting ASP.NET Web Forms directly. The following interview questions Iâve slapped together âfinallyâ engageâdirectly. By the way to show that Iâm super serious about this matter, Iâve literally spent hours over about two weeks building samples for ASP.NET for Web Forms in my studio.
What are ASP.NET Web Forms?
ASP.NET Web Forms is a technology that breaks down a plain-old HTTP Request into a series of clearly defined events (classified broadly under initialization, load and render)âthese events describe the âlife cycleâ of a familiar model, the data-entry form in a Web page. ASP.NET is based on the event-driven programming paradigm made popular and traditional by Microsoft in the 1990s.
What is a âPost Backâ?
The âPost Backâ is the concept developed by Microsoft that stands between the post HTTP verb and the first event recognized by an ASP.NET Page. Typically, the Page.IsPostBack Boolean is checked in the Page.OnLoad event handler. When Page.IsPostBack == false then the get HTTP verb is the request. Microsoft has defined a conventional Jscript function, __doPostBack(), that invokes the âPost Back.â ASP.NET Web Forms seem crude and extravagant in the 21st century when a page-level post action is regarded as expensive and disruptive (ASP.NET AJAX was supposed to remedy this).
Why do ASP.NET controls require a parent form?
Without a parent form element, the âPost Backâ concept is not implemented. Conventional hidden fields in the form store event metadata (__EVENTTARGET, __EVENTARGUMENT, __VIEWSTATE).
See also: âTRULY Understanding ViewStateâ
What is the AutoPostBack property?
The AutoPostBack property is a Boolean that is apparently defined independently and conventionally in the System.Web.UI.WebControls.ListControl, System.Web.UI.WebControls.CheckBox and System.Web.UI.WebControls.TextBox. When AutoPostBack == true an event associated with these controls (select, check, blur) will cause a Post Back.
See also:
System.Web.UI.PostBackOptions and System.Web.UI.Page.AutoPostBackControl.
What is a Cross-Page Post Back?
By default, an ASP.NET page âposts backâ to itself (frequently). A Cross-Page Post Back declares that one Web Form should post to another Web Formânot back to itself. Input captured in the posting page can be captured in the receiving page via the Page.PreviousPage property.
Tip: The Page.IsCrossPagePostBack property is always null. During a cross page Post Back Page.PreviousPage.IsCrossPagePostBack will be true.
See also:
Button.PostBackUrl.
What is a Server Transfer?
An ASP.NET Server Transfer allows a Page executing on the Server to Transfer execution to another Page. It can be thought of as a call to another procedure from the currently executing procedure. In terms of a POCO class, a Server Transfer is a method call in a procedure of one class with a member from another classâthe catch is that no arguments can be passed in the method call. After a Server Transfer, the new page running has access to all of the Request, Session and Application-scope data in the old page. Importantly, there is a Page.PreviousPage property which can be used with FindControl() to locate controls on the old page.
According to Microsoft MVP Karl Moore, âSo, in brief: Response.Redirect simply tells the browser to visit another page. Server.Transfer helps reduce server requests, keeps the URL the same and, with a little bug-bashing, allows you to transfer the query string and form variables. âŠDonât confuse Server.Transfer with Server.Execute, which executes the page and returns the results. It was useful in the past, but, with ASP.NET, itâs been replaced with fresher methods of development. Ignore it.â
See also: âASP.NET Server.Transfer Methodâ
What is a Master Page?
The ASP.NET Master helps keep Web Forms DRY. They share visual elements among several ASP.NET pages providing the âconsistent look and feelâ Web designers expect. ASP.NET Master pages also centralize HTML page âmetaâ information, much of the angle-bracketed ceremony that make Web page markup noisy.
How does a Master Page affect the Control.FindControl function?
The ASP.NET Master adds one or more ContentPlaceHolder controls to the visual tree. These in turn demand Content controls, which implement INamingContainerâa ânaming containerâ affects the ID attributes of child controls âinsideâ the container. So: a control named foo inside a naming container, bar, can be located by Control.FindControl("bar$foo") where Control would be an instance of the Master page in our example.
How do Web Forms handle Validation?
ASP.NET handles Validation with PostBack-dependent server controls. These server controls share a ControlToValidate property, pointing to the input-related server control to Validate. There are validation controls for marking input as required, checking input for a data type, testing input with a Regular Expression and testing input with custom code.
One little annoyance: custom validators donât work with blank inputâso they must be paired with the validation control for marking input as required (RequiredFieldValidator).
What are Validation groups?
Validation groups allow more than one âvalidation contextâ to exist in a Web Form. For example, a layout with a GridView might have an EditItemTemplate with one Validation Group for editing while another form used for inserting new rows into the grid will have another Validation Group. Validation groups are declared with the ValidationGroup property.
What is a âPartial Page Updateâ?
The âPartial Page Updateâ is made possible with the UpdatePanel and the ScriptManager, which is the heart of ASP.NET AJAX. This extension to ASP.NET introduced in version 2.0 dramatically reduces the need to do the âclassicâ PostBack by implementing the âasynchronous PostBackâ a.k.a. the âPartial Page Update.â






m PST 

