FeedBack Form

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

ASP.NET INTERVIEW QUESTION & ANSWERS

86. What is fragment caching?
  Frgament Caching is the process of caching individual user control.
Your Name Your Email-ID
Your Answer
 
87. What are ASHX files?
  ASHX files contain HTTP handlers-software modules that handle raw HTTP requests received by ASP.NET.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
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
Your Name Your Email-ID
Your Answer
 
90. How can you enable automatic paging in Datagrid?
  Set the Allow Paging to true.In PageIndexChanged event set the current page index clicked.
Your Name Your Email-ID
Your Answer