which event in global.asx that fires for every request of
same user?
Answers were Sorted based on User's Feedback
session events are on start,on end in global.asax that
fires every request of same user.
Is This Answer Correct ? | 13 Yes | 1 No |
Answer / loka
void Application_OnPostAuthenticateRequest(object sender,
EventArgs e)
1.Yes this event fires for every request
2.Yes you can use this event to get information for the
authenticated user
Is This Answer Correct ? | 1 Yes | 0 No |
What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over the other?
What is the difference between cookie and session?
What is application variable in asp.net?
Briefly describe different techniques for ASP.NET State Management?
6 Answers Deloitte, Syntax Softtech,
What permissions do asp.net applications posses by default?
In the context of a comparison, what is object identity versus object equivalence?
how to do pakaging nd deployment
You are planning the deployment of an ASP.NET application. The application uses a Visual Studio .NET component named DataAccess that will be shared with other applications on your Web server. You are using Visual Studio .NET to create a Windows Installer package. You need to deploy DataAccess and the ASP.NET application so that they can be uninstalled later of necessary. What should you do? A . Create a setup project for DataAccess. Add the ASP.NET application in a custom action. B . Create a setup project for the ASP.NET application. Create another setup project for DataAccess. C . Create a Web setup project for the ASP.NET application. Add a project output for DataAccess. D . Create a Web setup project for the ASP.NET application. Add a merge module for DataAccess.
When would you set a control's AutoPostBack property to true?
What is datagrid asp.net?
Where can I get the details on migration of existing projects using various technologies to asp.net?
How you can add an event handler?