I've read some others threads from here and outside, but nothing worked... I have a few \[code\]Sessions\[/code\] like (login, column's value ...). And I want to set a time to the \[code\]Sessions\[/code\] expires... I've tried:\[code\]Session.TimeOut = "60";\[/code\]and also using the \[code\]web.cfg\[/code\]\[code\]<configuration> <system.web> <sessionState timeout="60"></sessionState> </system.web></configuration>\[/code\]I test the \[code\]Session\[/code\] on every page_load like:\[code\]if(Session["login"] == null){ Response.Redirect("/Login.aspx");}\[/code\]But it seems that the \[code\]Session\[/code\] get lost in the middle of the navigation because after sometime (1min, 5min, 2min ....) It returns to the \[code\]login page\[/code\]. What could be wrong here ?I also read some articles about \[code\]Membership Authentication\[/code\] but I couldn't get it =\
Thanks
Thanks