ASP.NET INTERVIEW QUESTION & ANSWERS
86. |
What is fragment caching? |
|
Frgament Caching is the process of caching individual user control. |
87. |
What are ASHX files? |
|
ASHX files contain HTTP handlers-software modules that handle raw HTTP requests received by ASP.NET. |
88. |
How to Create a Cookie? |
|
Cookie are one of several ways to store data about web site visitors during the time when web server and browser are not connected. Common use of cookies is to remember users between visits. Practically, cookie is a small text file sent by web server and saved by web browser on client machine.
The"Response.Cookies" command is used to create cookies. |
89. |
What namespaces are imported by default in ASMX files? |
|
The following namespaces are imported by default. Other namespaces must be imported manually :
- System
- System.Collections
- System.ComponentModel
- System.Data
- System.Diagnostics
- System.Web
- System.Web.Services
|
90. |
How can you enable automatic paging in Datagrid? |
|
Set the Allow Paging to true.In PageIndexChanged event set the current page index clicked.
|