ASP.NET INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
41. | What is the sequence in which ASP.NET events are processed? |
---|---|
|
Posted by Hemant Patil. (Feb 16, 2014) | |
1) PreInit |
42. | What is a postback? and when is it used in ASP.NET Web forms? |
---|---|
A postback is the name for the page request that an ASP.NET page sends to itself when a Web control is activated, such as when users click a button. Most Web forms use the HTML form control, which allows users to submit data using HTTP Post requests. |
43. | Which method do you use to redirect the user to another page without performing a round trip to the client? |
---|---|
Server.transfer() |
44. | What is a Session and Application object? |
---|---|
Session object store information between HTTP requests for a particular user, while application object are global across users. |
45. | What method is used to bind data items to an ASP.NET Web control? |
---|---|
The DataBinder.Eval method binds data items to ASP.NET Web controls. |