Click here to Skip to main content
15,888,454 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: inserting multiple rows at a time Pin
Sherin Iranimose21-May-07 2:07
Sherin Iranimose21-May-07 2:07 
GeneralRe: inserting multiple rows at a time Pin
yuvachandra21-May-07 2:14
yuvachandra21-May-07 2:14 
GeneralRe: inserting multiple rows at a time Pin
Sherin Iranimose21-May-07 2:24
Sherin Iranimose21-May-07 2:24 
GeneralRe: inserting multiple rows at a time Pin
yuvachandra21-May-07 3:29
yuvachandra21-May-07 3:29 
Questionhow to determine Session is Alive or not Pin
Bajrang Singh20-May-07 23:35
Bajrang Singh20-May-07 23:35 
AnswerRe: how to determine Session is Alive or not Pin
Guffa21-May-07 0:03
Guffa21-May-07 0:03 
AnswerRe: how to determine Session is Alive or not Pin
kapiljadhav21-May-07 4:18
kapiljadhav21-May-07 4:18 
GeneralRe: how to determine Session is Alive or not Pin
hammdo21-May-07 23:39
hammdo21-May-07 23:39 
You can also use the global.asax and use the session time out method. With that you can redirect the user to a login page or a 'default' page for session timeout information.

e.g.,

// this is inside the global.asax
void Session_End(object sender, EventArgs e)
{
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised

Server.Transfer("login.aspx");

}

why Server.Transfer?

here is more info on the do's and dont's
http://www.developer.com/net/asp/article.php/3299641[^]
Questionjavascript- to display the value of checkbox? Pin
Balaji.K20-May-07 23:32
Balaji.K20-May-07 23:32 
AnswerRe: javascript- to display the value of checkbox? Pin
Sandeep Akhare21-May-07 1:21
Sandeep Akhare21-May-07 1:21 
GeneralRe: javascript- to display the value of checkbox? Pin
Balaji.K21-May-07 19:34
Balaji.K21-May-07 19:34 
Questionon right click on LinkButton if we chose to "Open in new tab/window " it doesn't work Pin
yogita charhate20-May-07 23:20
yogita charhate20-May-07 23:20 
AnswerRe: on right click on LinkButton if we chose to "Open in new tab/window " it doesn't work Pin
badgrs20-May-07 23:52
badgrs20-May-07 23:52 
QuestionCache not working Properly in ASP.NET 2.0 Pin
rsp702320-May-07 23:08
rsp702320-May-07 23:08 
AnswerRe: Cache not working Properly in ASP.NET 2.0 Pin
Sandeep Akhare21-May-07 0:24
Sandeep Akhare21-May-07 0:24 
GeneralRe: Cache not working Properly in ASP.NET 2.0 Pin
rsp702321-May-07 1:00
rsp702321-May-07 1:00 
Questiontab index in asp.net 2.0 Pin
aransiola20-May-07 23:02
aransiola20-May-07 23:02 
AnswerRe: tab index in asp.net 2.0 Pin
Harini N K20-May-07 23:18
Harini N K20-May-07 23:18 
Questionproblem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari20-May-07 22:08
pradeep kumarappagari20-May-07 22:08 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
wEb GuRu...20-May-07 22:31
wEb GuRu...20-May-07 22:31 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari21-May-07 1:58
pradeep kumarappagari21-May-07 1:58 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
Laxmikant Lad20-May-07 23:03
Laxmikant Lad20-May-07 23:03 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari21-May-07 1:56
pradeep kumarappagari21-May-07 1:56 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
kumarjammula21-May-07 0:13
kumarjammula21-May-07 0:13 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
Christian Graus21-May-07 1:40
protectorChristian Graus21-May-07 1:40 

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.