Click here to Skip to main content
15,916,945 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Redirect with querystring Pin
Punit Belani1-Jun-10 23:57
Punit Belani1-Jun-10 23:57 
Questionword press with asp.net web app Pin
trilokharry1-Jun-10 21:22
trilokharry1-Jun-10 21:22 
AnswerRe: word press with asp.net web app Pin
Rhys Jacob2-Jun-10 4:25
Rhys Jacob2-Jun-10 4:25 
AnswerRe: word press with asp.net web app Pin
Abhijit Jana2-Jun-10 18:45
professionalAbhijit Jana2-Jun-10 18:45 
QuestionHow can I avoid back button after logged out Pin
BalasubramanianK1-Jun-10 20:58
BalasubramanianK1-Jun-10 20:58 
AnswerRe: How can I avoid back button after logged out Pin
m@dhu1-Jun-10 21:07
m@dhu1-Jun-10 21:07 
QuestionRe: How can I avoid back button after logged out Pin
Ankur\m/1-Jun-10 21:22
professionalAnkur\m/1-Jun-10 21:22 
AnswerRe: How can I avoid back button after logged out Pin
Sandeep Mewara1-Jun-10 21:26
mveSandeep Mewara1-Jun-10 21:26 
Just search it in CP Q&A forum. This has been asked number of times:

one of the ways: Try...In you logout event:
C#
protected void LogOut()   
{       
     Session.Abandon();       
     string nextpage = "Logoutt.aspx";       
     Response.Write("<script language=javascript>");             
     Response.Write("{");       
     Response.Write(" var Backlen=history.length;");       
     Response.Write(" history.go(-Backlen);");       
     Response.Write(" window.location.href='" + nextpage + "'; ");
     Response.Write("}");       
     Response.Write("</script>");   
}

GeneralRe: How can I avoid back button after logged out Pin
Ankur\m/1-Jun-10 21:39
professionalAnkur\m/1-Jun-10 21:39 
GeneralRe: How can I avoid back button after logged out Pin
Sandeep Mewara1-Jun-10 21:47
mveSandeep Mewara1-Jun-10 21:47 
AnswerRe: How can I avoid back button after logged out Pin
Ankur\m/1-Jun-10 21:31
professionalAnkur\m/1-Jun-10 21:31 
AnswerRe: How can I avoid back button after logged out Pin
Arindam Tewary1-Jun-10 23:13
professionalArindam Tewary1-Jun-10 23:13 
GeneralRe: How can I avoid back button after logged out Pin
BalasubramanianK2-Jun-10 23:00
BalasubramanianK2-Jun-10 23:00 
Questionweb service and dotnet Pin
NetQuestions1-Jun-10 20:11
NetQuestions1-Jun-10 20:11 
AnswerRe: web service and dotnet Pin
Sandeep Mewara1-Jun-10 21:23
mveSandeep Mewara1-Jun-10 21:23 
QuestionUncommon behaviour Pin
m@dhu1-Jun-10 19:06
m@dhu1-Jun-10 19:06 
AnswerRe: Uncommon behaviour Pin
Sandeep Mewara1-Jun-10 19:43
mveSandeep Mewara1-Jun-10 19:43 
GeneralRe: Uncommon behaviour Pin
m@dhu1-Jun-10 20:54
m@dhu1-Jun-10 20:54 
GeneralRe: Uncommon behaviour Pin
Sandeep Mewara1-Jun-10 21:22
mveSandeep Mewara1-Jun-10 21:22 
GeneralRe: Uncommon behaviour Pin
m@dhu1-Jun-10 22:28
m@dhu1-Jun-10 22:28 
QuestionUrgent. Error in Fetching date field data from excel sheet Pin
cheguri1-Jun-10 18:58
cheguri1-Jun-10 18:58 
AnswerRe: Urgent. Error in Fetching date field data from excel sheet Pin
Sandeep Mewara1-Jun-10 19:42
mveSandeep Mewara1-Jun-10 19:42 
GeneralRe: Urgent. Error in Fetching date field data from excel sheet Pin
cheguri1-Jun-10 20:21
cheguri1-Jun-10 20:21 
QuestionProperties in .NET : Get and Set Pin
arithforu1-Jun-10 18:21
arithforu1-Jun-10 18:21 
AnswerRe: Properties in .NET : Get and Set Pin
Sandeep Mewara1-Jun-10 19:32
mveSandeep Mewara1-Jun-10 19:32 

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.