Click here to Skip to main content
15,889,335 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Capturing Session value before session expire Pin
zeego29-Jun-10 0:58
zeego29-Jun-10 0:58 
Questiondont really know the title.. Pin
Thommie.h28-Jun-10 20:52
Thommie.h28-Jun-10 20:52 
AnswerRe: dont really know the title.. Pin
Anurag Gandhi28-Jun-10 21:10
professionalAnurag Gandhi28-Jun-10 21:10 
GeneralRe: dont really know the title.. Pin
Thommie.h29-Jun-10 3:38
Thommie.h29-Jun-10 3:38 
AnswerRe: dont really know the title.. Pin
Gaurav Dudeja India28-Jun-10 22:22
Gaurav Dudeja India28-Jun-10 22:22 
GeneralRe: dont really know the title.. Pin
Thommie.h29-Jun-10 2:29
Thommie.h29-Jun-10 2:29 
QuestionHow to manage the session Pin
Debapriya Sahoo28-Jun-10 20:41
Debapriya Sahoo28-Jun-10 20:41 
AnswerRe: How to manage the session Pin
Anurag Gandhi28-Jun-10 21:24
professionalAnurag Gandhi28-Jun-10 21:24 
Once Back button is clicked, the browser may display the Cached version of the page.
If you wish to avoid that, Expire the page using Response.Expires = -1;

Don't forget to kill the session for logged out user.

If you wish to disable browser back button, use Request.ServerVariables["HTTP_REFERER"] to get the info
about the url of the client's previous request.

string s = "";

if(Request.ServerVariables["HTTP_REFERER"] != null)
{
s = Request.ServerVariables["HTTP_REFERER"].ToString();
}


Hope this will help.
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life.

AnswerRe: How to manage the session Pin
Karan_TN28-Jun-10 21:36
Karan_TN28-Jun-10 21:36 
AnswerRe: How to manage the session Pin
m@dhu28-Jun-10 22:51
m@dhu28-Jun-10 22:51 
Questionwsdl Pin
gerom7728-Jun-10 19:43
gerom7728-Jun-10 19:43 
AnswerRe: wsdl Pin
Laxman Auti28-Jun-10 20:44
Laxman Auti28-Jun-10 20:44 
GeneralRe: wsdl Pin
gerom7728-Jun-10 21:37
gerom7728-Jun-10 21:37 
AnswerRe: wsdl Pin
Laxman Auti28-Jun-10 21:58
Laxman Auti28-Jun-10 21:58 
QuestionError occoured while downloading ZIP file Pin
koolprasad200328-Jun-10 19:13
professionalkoolprasad200328-Jun-10 19:13 
AnswerRe: Error occoured while downloading ZIP file Pin
Sandeep Mewara28-Jun-10 19:42
mveSandeep Mewara28-Jun-10 19:42 
QuestionArabic Conversion Pin
SreejithAchutan28-Jun-10 18:58
SreejithAchutan28-Jun-10 18:58 
AnswerRe: Arabic Conversion Pin
Sandeep Mewara28-Jun-10 19:34
mveSandeep Mewara28-Jun-10 19:34 
QuestionMVC project and storeprocedured(Please help) [modified] Pin
future383928-Jun-10 16:58
future383928-Jun-10 16:58 
AnswerRe: MVC project and storeprocedured(Please help) Pin
Sandeep Mewara28-Jun-10 19:33
mveSandeep Mewara28-Jun-10 19:33 
GeneralRe: MVC project and storeprocedured(Please help) Pin
future383929-Jun-10 5:30
future383929-Jun-10 5:30 
GeneralRe: MVC project and storeprocedured(Please help) Pin
future383929-Jun-10 14:31
future383929-Jun-10 14:31 
QuestionFormatting currency Pin
Civic0628-Jun-10 12:25
Civic0628-Jun-10 12:25 
AnswerRe: Formatting currency Pin
Sandeep Mewara28-Jun-10 19:32
mveSandeep Mewara28-Jun-10 19:32 
QuestionRad ListBox Pin
indian14328-Jun-10 9:41
indian14328-Jun-10 9:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.