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). |
|
|
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. |
|
|
93. |
What are three programmatic improvements of ASP.NET over ASP? |
|
- Ease of deployment
- Improved session state
- The use of code declaration blocks
|
|
|
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.
|
|
|
95. |
Which property can be used to make a control post immediately to the server upon an event? |
|
AutoPostBack |
|
|