What are the types of authentication in ASP .NET?

Questioned on September 13, 2011
by admin
Authentication is the process of obtaining identification credentials such as name and password from a user and validating those credentials against some authority. If the credentials are valid, the entity that submitted the credentials is considered an authenticated identity. Once an identity has been authenticated, the authorization process determines whether that identity has access to a given resource. ASP.NET...

What is the default timeout for cookies?

Questioned on September 13, 2011
by admin
The default time out is 30 minutes.

What is the functionality of ASP .NET App_Data Folder?

Questioned on September 13, 2011
by admin
The App_Data folder holds the data stores utilized by your website or web application. It is a central location for storing databases. The App_Data folder can contain Microsoft SQL Express files (.mdf and .sdf files), Microsoft Access files (.mdb files), XML files etc.

What is the functionality of ASP .NET App_Code Folder?

Questioned on September 13, 2011
by admin
The App_Code folder is meant for storing all code files like classes, .wsdl files, and typed datasets. Once compiled, all these objects are available to all the ASP .NET pages that are in the same solution.

List of ASP .NET folders

Questioned on September 13, 2011
by admin
Go to Solution Explorer -> Right click on the name of the website -> Click on ASP .NET folders. The following folders will be displayed. 1. App_Code 2. App_Data 3. App_Themes 4. App_GlobalResources 5. App_LocalResources 6. App_WebReferences 7. App_Browsers

What are the new features in ASP .NET 4.0?

Questioned on September 8, 2011
by admin
Find below the links to the new features in ASP .NET and Visual Studio 2010. You can download the whitepaper here.   Core Services Web.config File Refactoring Extensible Output Caching Auto-Start Web Applications Permanently Redirecting a Page Shrinking Session State Expanding the Range of Allowable URLs Extensible Request Validation Object Caching and Object Caching Extensibility...

What are web forms?

Questioned on September 8, 2011
by admin
Web Forms are fundamental to Microsoft ASP.NET and is the heart and soul of ASP.NET. Web Forms are the User Interface (UI) elements that give your Web applications their look and feel. Web Forms are similar to Windows Forms in that they provide properties, methods, and events for the controls that are placed onto them. However, these UI elements render themselves in the appropriate markup language...

What is the difference between ASP and ASP .NET?

Questioned on September 8, 2011
by admin
ASP.NET has the new file extension. ASP.NET pages use .aspx, as opposed to the .asp extension used with ASP. Additionally, when an ASP.NET page is requested, IIS hands off the request to the aspnet_wp.exe process; ASP uses asp.dll. ASP and ASP.NET can both be used on the same Web server. That is, a Web site or Web application within a site can contain both ASP.NET pages and ASP pages. Because...

What is ASP .NET?

Questioned on September 8, 2011
by admin
Microsoft® ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services. ASP.NET pages execute on the server and generate markup such as HTML, WML, or XML that is sent to a desktop or mobile browser. ASP.NET pages use a compiled, event-driven programming model that improves performance and enables the separation of application logic and user...

What is ASP?

Questioned on September 8, 2011
by admin
Microsoft® Active Server Pages (ASP) is a server-side scripting environment that you can use to create and run dynamic, interactive Web server applications. With ASP, you can combine HTML pages, script commands, and COM components to create interactive Web pages and powerful Web-based applications that are easy to develop and modify.