Hi ,
while working , session automattically closed . how to session alive till my work completed.
In web config.
while login i'm maintaining customer id
Session["c_userid"] = "1";
In Every page & every action
if (Session["c_userid"] == null)
{
Response.Redirect(GetRouteUrl("HomeExpirePage", null));
}
if i m not doing anything in page 30 minutes session closed thats fine. but i m working in page that time Session["c_userid"] is null ? how ?
Sanwar RanwaPosted Mar 27, 2019, 4:04 AM
Madhukar KrishnaPosted Mar 27, 2019, 4:04 AM