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
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?
What’s the use of “GLOBAL.ASAX” file?
How do active server pages work?
Explain the function of new view engine in asp.net? : asp.net mvc
What do you mean by authorization?
What is ipostback?
How many types of cookies are available in asp?
Explain how do you validate the controls in an asp .net page?
What is difference cookie and session?
Explain what is event bubbling?
Explain a program using code nuggets to create a simple application? : asp.net mvc
What is is post back property in asp net?
What are the advantages of using session?
How can you register a custom server control to a web page?