FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

ASP.NET INTERVIEW QUESTION & ANSWERS

41. What is the sequence in which ASP.NET events are processed?
 
  • Page_Init
  • Page Load
  • Control Events
  • Page-Unload Events
  Posted by Hemant Patil. (Feb 16, 2014)
 

1) PreInit
2) Init
3) Init Complete
4) PreLoad
5) Load
6) Control Events
7) Load Complete
8) PreRender
9) PreRender Complete
10) Render
11) Unload

Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
43. Which method do you use to redirect the user to another page without performing a round trip to the client?
  Server.transfer()
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer