ASP.Net Interview Question and Answers

91. What are the standard event handler parameters for ASP.NET pages?
  The standard parameter list is (Sender as Object, e as EventArgs).
 
Your Name Your Email-ID
Your Answer
92. What is State management?
  State Management is used to store information requests. The state management is used to trace the information or data that affect the state of the applications.
 
Your Name Your Email-ID
Your Answer
93. What are three programmatic improvements of ASP.NET over ASP?
 
  • Ease of deployment
  • Improved session state
  • The use of code declaration blocks
 
Your Name Your Email-ID
Your Answer
94. Write three common properties of all validation controls?
  Three common properties of all validation controls are as
  • Control to Validate – Provides a control to validate.
  • ErrorMessage– Dispalys an error message.
  • IsValid– Specifies if the control’s validation has succeeded or not.
  • Text – Displays a text for validation control before validation.
 
Your Name Your Email-ID
Your Answer
95. Which property can be used to make a control post immediately to the server upon an event?
  AutoPostBack
 
Your Name Your Email-ID
Your Answer