FeedBack Form

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

ASP.NET INTERVIEW QUESTION & ANSWERS

136. What file extension does ASP.NET use for Web Services?
  ASP.NET uses the .aspx extension for Web Service files.
  Posted by Mohammedusain. (May 18, 2013)
 

Web Services use .asmx file extension.

Your Name Your Email-ID
Your Answer
 
137. What is the difference between Server.Transfer and Response.Redirect?
  Server.Transfer is used to post a form to another page.
Response.Redirect is used to redirect the user to another page or site.
Your Name Your Email-ID
Your Answer
 
138. What is a static class?
  A static class is a class which can not be instantiated using the 'new' keyword. They also only contain static members, are sealed and have a private constructor.
Your Name Your Email-ID
Your Answer
 
139. What base class do all Web Forms inherit from?
  System.web.UI.Page class
Your Name Your Email-ID
Your Answer
 
140. What is the difference between Windows authentication and Forms authentication?
  Windows authentication uses actual Windows users. Forms authentication users are independent of the operating system.
Your Name Your Email-ID
Your Answer