Authentication Options in Web.Config
None Federated Forms Passport Windows
None Federated Forms Passport Windows
-> Anonymous -> Basic -> Digest -> NTLM -> Negotiate -> Windows Live ID Anonymous -> An Anonymous request does not contain any authentication information. This is equivalent to granting…
-> is an object that sits on top of all running ASP.NET AppDomains and can do things like shut them all or check for idle status. -> When we change…
An ASP.Net HTTP handler is the process that runs in response to a request that is made to an ASP.Net web application. The most common handler is an ASP.Net page…
Execute Handler -> The handler (a module scoped to a URL) is invoked to construct the response. For aspx files, the PageHandlerFactory handler is used to respond to the request. For…
Impersonation is an act of a user to pretend it self to be another user. By default, ASP.Net executes application code using the same user account as that of ASP.Net…
In-Process – is the default approach. It stores the session state locally on same web server memory where the application is running. StateServer – stores session state in a process…
-> An application can often increase performance by storing data in memory that is accessed frequently and that requires significant processing time to create. -> Caching is the process of…
-> When a page request is sent to the Web server, the page is run through a series of events during its creation and disposal. -> PreInit -> Init (View…
Page Request -> When ASP.Net gets a page request, it decides whether to parse and compile the page, or there would be a cached version of the page, accordingly the…