Asp.Net Questions and Answers
1. |
What is ASP? |
|
- Active Server Pages(ASP), also known as Classic ASP, is a Microsoft's server side technology, which helps in creating dynamic and user friendly Web pages.
- It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser.
|
2. |
What is ASP.NET? |
|
- ASP.NET is a specification developed by Microsoft to create dynamic Web applications, Web sites and Web services.
-
It is a part of .NET Framework.
- The ASP.NET compiles the Web Pages and provides much better performance than scripting languages, such as VBScript.
-
The Web Forms support to create powerful forms based Web pages.
- ASP.NET Web server controls to create interactive Web applications with the help of Web server controls, you can easily create a Web application.
|
3. |
What are the major built in objects in Asp.net? |
|
The major built in objects in Asp.net are as follows:
- Application
- Request
- Response
- Server
- Session
- Context
-
Trace
|
4. |
What is the default timeout for a cookie? |
|
The default time duration for a cookie is 30 minutes.
|