Click here to Skip to main content
16,007,932 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: HOw can i add Header and footer? Pin
Richard Parsons25-Apr-06 4:39
Richard Parsons25-Apr-06 4:39 
GeneralRe: HOw can i add Header and footer? Pin
NinaWilliam25-Apr-06 18:06
NinaWilliam25-Apr-06 18:06 
QuestionInternet Speed Pin
kirthikirthi24-Apr-06 23:26
kirthikirthi24-Apr-06 23:26 
AnswerRe: Internet Speed Pin
Zakaria Bin Abdur Rouf25-Apr-06 3:20
Zakaria Bin Abdur Rouf25-Apr-06 3:20 
GeneralRe: Internet Speed Pin
kirthikirthi25-Apr-06 18:12
kirthikirthi25-Apr-06 18:12 
QuestionSession continues after the Session times out Pin
Praveen_S24-Apr-06 23:25
Praveen_S24-Apr-06 23:25 
AnswerRe: Session continues after the Session times out Pin
yogsworld24-Apr-06 23:54
yogsworld24-Apr-06 23:54 
AnswerRe: Session continues after the Session times out Pin
Frank Kerrigan25-Apr-06 0:43
Frank Kerrigan25-Apr-06 0:43 
It is likely that a new session is being created when you hit the page after the 20min time out and its being posted back.

Place this at the top of your Load.Page or place other code in your Global.aspx Session Start. Note: Session End will not effect client page view.


if (Session.IsNewSession)
{
// New Session
// Take your pick
Server.Transfer("Default.aspx");
Response.Redirect("Default.aspx");


}

Look where you want to go not where you don't want to crash.

Bikers Bible

-- modified at 6:44 Tuesday 25th April, 2006
QuestionHow to open a windows application from asp.net page Pin
nesaraja24-Apr-06 23:14
nesaraja24-Apr-06 23:14 
AnswerRe: How to open a windows application from asp.net page Pin
J4amieC24-Apr-06 23:22
J4amieC24-Apr-06 23:22 
QuestionArthimetic operations results in overflow Pin
MaheshSharma24-Apr-06 23:11
MaheshSharma24-Apr-06 23:11 
AnswerRe: Arthimetic operations results in overflow Pin
Colin Angus Mackay24-Apr-06 23:26
Colin Angus Mackay24-Apr-06 23:26 
GeneralRe: Arthimetic operations results in overflow Pin
MaheshSharma25-Apr-06 0:10
MaheshSharma25-Apr-06 0:10 
GeneralRe: Arthimetic operations results in overflow Pin
Colin Angus Mackay25-Apr-06 0:53
Colin Angus Mackay25-Apr-06 0:53 
GeneralRe: Arthimetic operations results in overflow Pin
MaheshSharma25-Apr-06 2:15
MaheshSharma25-Apr-06 2:15 
GeneralRe: Arthimetic operations results in overflow Pin
Colin Angus Mackay25-Apr-06 2:20
Colin Angus Mackay25-Apr-06 2:20 
GeneralRe: Arthimetic operations results in overflow Pin
MaheshSharma25-Apr-06 3:26
MaheshSharma25-Apr-06 3:26 
GeneralRe: Arthimetic operations results in overflow Pin
MaheshSharma25-Apr-06 18:55
MaheshSharma25-Apr-06 18:55 
AnswerRe: Arthimetic operations results in overflow Pin
Paddy Boyd24-Apr-06 23:32
Paddy Boyd24-Apr-06 23:32 
GeneralRe: Arthimetic operations results in overflow Pin
MaheshSharma25-Apr-06 19:16
MaheshSharma25-Apr-06 19:16 
Questionadvantage of using multiple config files Pin
chakkara200324-Apr-06 23:03
chakkara200324-Apr-06 23:03 
AnswerRe: advantage of using multiple config files Pin
CWIZO25-Apr-06 0:38
CWIZO25-Apr-06 0:38 
Questionwindows querry Pin
meer_Lx24-Apr-06 22:33
meer_Lx24-Apr-06 22:33 
GeneralRe: windows querry Pin
Guffa24-Apr-06 23:18
Guffa24-Apr-06 23:18 
Questionwindows based application Querry ! Pin
meer_Lx24-Apr-06 22:25
meer_Lx24-Apr-06 22:25 

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.