how to disable previous page complete after logout process
Answers were Sorted based on User's Feedback
Answer / aman
<script type = "text/javascript" >
function disableBackButton()
{
window.history.forward();
}
setTimeout("disableBackButton()", 0);
</script>
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajesh
<%
response.setHeader("Pragma","no-cache");
response.setHeader("Cache-Control","no-store");
response.setHeader("Expires","0");
response.setDateHeader("Expires",-1);
%>
| Is This Answer Correct ? | 0 Yes | 0 No |
What should be used in order to determine if the cookie "FavoriteFlavors" in the request object contains more than one entry? A. Request.Cookies("FavoriteFlavors").HasItems B. Request.Cookies("FavoriteFlavors").Collection.Count C. Request.Cookies("FavoriteFlavors").Dictionary D. Request.Cookies("FavoriteFlavors").HasKeys E. Request.Cookies("FavoriteFlavors").Count
different web application and windows application
What is full form of aspx?
Should user input data validation occur server-side or client-side?
What does asp mean in business?
How long is a SessionID guaranteed to be unique? A. It is unique for the web server, whether it is restarted or not. B. Only until the web server is restarted. C. It is like a GUID in that it is for any web server at any time. D. Only until the session expires, then it can be reissued to another client. E. It is unique per client. A client cannot have two sessions with the same SessionID
Which is an advantage of application service providers (asps)?
Define global.asa file?
How do I administer security for my machine? For an enterprise?
Define common type system (cts)?
What does Server.MapPath do?
When did classic asp come out?