ASP.NET INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
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. |
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. |
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. |
139. | What base class do all Web Forms inherit from? |
---|---|
System.web.UI.Page class |
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. |