suppose i am Admin in my application and i have to
terminate the session of the particular user in my
application.........how can i do it....?????
Answer Posted / pushpa
In Global.asax, you have an event called Session_End - this
is the event
which fires (so long as your Session is InProc) when the
Session ends.
Under normal circumstances, the Session ends for two
reasons:
1) it has timed out automatically, by default after 20
minutes of
inactivity, though this figure can be changed
2) it has been ended explicitly ("torn down", to use the
jargon)
You may be familiar with logging out of your on-line
banking application by
clicking a "Logout" button or whatever - it is the code
behind such a button
where you would place the Session.Abandon() code.
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
Which platform does Microsoft .NET use for exchanging data between applications?
What is server side routing?
What are demand-paging and pre-paging?
What are the advantages of passport authentication?
What is the difference between “Web.config” and “Machine.Config”?
What are the difference between overriding and overloading?
Explain authorization levels in .net ?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
What parameters can you pass in the url of the api?
What is cas?
What is the best Macanism to clear the Cache in asp.net
What is the difference between system.stringbuilder and system.string
Which of the following .NET framework supports Web API?
What are session state modes? List some of the important session state modes of asp.net.
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?