Click here to Skip to main content
15,915,094 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionCSS for ASP.NET1.1 DataGrid Pin
.NET- India 16-Nov-07 19:39
.NET- India 16-Nov-07 19:39 
GeneralRe: CSS for ASP.NET1.1 DataGrid Pin
John-ph16-Nov-07 21:25
John-ph16-Nov-07 21:25 
AnswerRe: CSS for ASP.NET1.1 DataGrid Pin
Gandalf_TheWhite20-Nov-07 1:12
professionalGandalf_TheWhite20-Nov-07 1:12 
GeneralRe: CSS for ASP.NET1.1 DataGrid Pin
.NET- India 20-Nov-07 1:28
.NET- India 20-Nov-07 1:28 
GeneralRe: CSS for ASP.NET1.1 DataGrid Pin
.NET- India 20-Nov-07 1:41
.NET- India 20-Nov-07 1:41 
GeneralRe: CSS for ASP.NET1.1 DataGrid Pin
Gandalf_TheWhite20-Nov-07 18:00
professionalGandalf_TheWhite20-Nov-07 18:00 
GeneralRe: CSS for ASP.NET1.1 DataGrid Pin
.NET- India 20-Nov-07 19:57
.NET- India 20-Nov-07 19:57 
Questionlogout problem Pin
mukesh.mr0316-Nov-07 19:38
mukesh.mr0316-Nov-07 19:38 
hi,
i'm facing a problem in my logout section. even after logout user can go back to the previous page by clicking browsers back button.
i'm using code like this....
its working in Internet Explorer but not working in any other browsers.

plz help me..

protected void Page_Load(object sender, EventArgs e)
{
if (Session["sessionId"] != null)
{
string name1 = Session["sessionId"].ToString();
}
else
Response.Redirect("Login.aspx");

Response.Buffer=true;
Response.ExpiresAbsolute= DateTime.Now.AddDays(-1);
Response.Expires=-1500;
Response.CacheControl="no-cache";

}

protected void LogOut_Click(object sender, EventArgs e)
{
Session["sessionId"] = null;
Response.Redirect("Login.aspx");
}



AnswerRe: logout problem Pin
NetBot16-Nov-07 19:43
NetBot16-Nov-07 19:43 
GeneralRe: logout problem Pin
mukesh.mr0316-Nov-07 19:46
mukesh.mr0316-Nov-07 19:46 
GeneralRe: logout problem Pin
NetBot16-Nov-07 20:02
NetBot16-Nov-07 20:02 
GeneralRe: logout problem Pin
Abhijit Jana16-Nov-07 20:02
professionalAbhijit Jana16-Nov-07 20:02 
AnswerRe: logout problem Pin
Abhijit Jana16-Nov-07 19:59
professionalAbhijit Jana16-Nov-07 19:59 
GeneralRe: logout problem Pin
Mack Ait-Aoudia16-Nov-07 21:51
Mack Ait-Aoudia16-Nov-07 21:51 
GeneralRe: logout problem Pin
Abhijit Jana16-Nov-07 21:58
professionalAbhijit Jana16-Nov-07 21:58 
GeneralRe: logout problem Pin
Mack Ait-Aoudia17-Nov-07 5:56
Mack Ait-Aoudia17-Nov-07 5:56 
QuestionImport export outlook contacts Pin
ShuklaGirish16-Nov-07 19:27
ShuklaGirish16-Nov-07 19:27 
AnswerRe: Import export outlook contacts Pin
Sun Rays16-Nov-07 19:44
Sun Rays16-Nov-07 19:44 
GeneralRe: Import export outlook contacts Pin
ShuklaGirish16-Nov-07 21:24
ShuklaGirish16-Nov-07 21:24 
GeneralRe: Import export outlook contacts Pin
pmarfleet16-Nov-07 21:33
pmarfleet16-Nov-07 21:33 
QuestionAuto Calculate An Age Entered in Textbox : Without Postback the page. Pin
Gandalf_TheWhite16-Nov-07 19:23
professionalGandalf_TheWhite16-Nov-07 19:23 
AnswerRe: Auto Calculate An Age Entered in Textbox : Without Postback the page. Pin
SABhatti16-Nov-07 19:27
SABhatti16-Nov-07 19:27 
GeneralAuto Calculate An Age Entered in Textbox : Without Postback the page. Pin
Gandalf_TheWhite16-Nov-07 19:44
professionalGandalf_TheWhite16-Nov-07 19:44 
GeneralRe: Auto Calculate An Age Entered in Textbox : Without Postback the page. Pin
Gandalf_TheWhite16-Nov-07 21:28
professionalGandalf_TheWhite16-Nov-07 21:28 
GeneralRe: Auto Calculate An Age Entered in Textbox : Without Postback the page. Pin
pmarfleet16-Nov-07 21:37
pmarfleet16-Nov-07 21:37 

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.