FeedBack Form

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

ASP.NET INTERVIEW QUESTION & ANSWERS

61. What is the difference between ASP Session State and ASP.Net Session State?
  ASP session state relies on cookies, Serialize all requests from a client, does not survive process shutdown, Can not maintained across machines in a Web farm.
Your Name Your Email-ID
Your Answer
 
62. What methods are fired during the page load?
 
  • Init() - when the page is instantiated.
  • Load() - when the page is loaded into server memory.
  • PreRender() - the brief moment before the page is displayed to the user as HTML.
  • Unload() - when page finishes loading.
Your Name Your Email-ID
Your Answer
 
63. What is the file extension of web services?
  .asmx
  Posted by Shreja. (Sep 05, 2013)
 

for which type of files .aspx extension is used? can you list me diff. types of extensions used for which type of the diff. files?

  Posted by Munesh Sharma. (Jan 13, 2014)
 

These are the different types of extensions in Dot Net Files

» .aspx- Web Form
» .master - Master Page
» .ascx - WebUserControl
» .edmx - Ado Entity data Model
» .cs - Class file
» .rpt - CrystalReport
» .xsd - DataSet1
» .ascx - DynamicDataField
» .htm - HTMLPage
» .csproj - SilverlightApplication
» .mdf - Sql Server Database
» .config - web configuration file
» .asmx -web services
» .xml - XML file

Your Name Your Email-ID
Your Answer
 
64. What is the use of "EnableViewState" property?
  Enable View State turns on the automatic state management feature that enables server controls to re-populate their values on a round trip without requiring you to write any code. This feature is not free however, since the state of a control is passed to and from the server in a hidden form.
Your Name Your Email-ID
Your Answer
 
65. What is a Web Service?
  A Web Service is a program that offers functions that other programs can call over the Internet.
Your Name Your Email-ID
Your Answer