Hello...
i am using session in website and session expired time is 30 min ..but if some one access website continue from 30 min so how to reset time because its automatically logout..
this is my code
session Method :-
public class SessionExpire : System.Web.Mvc.ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
if (HttpContext.Current.Session["userid"] == null)
{
FormsAuthentication.SignOut();
HttpContext.Current.Session.Abandon();
filterContext.Result =
new RedirectToRouteResult(new RouteValueDictionary
{
{ "action", "Index" },
{ "controller", "Home" },
{ "returnUrl", filterContext.HttpContext.Request.RawUrl}
});
return;
}
}
}
This Is Controller:-
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using ShopINdeal.Models;
using ShopINdeal.ViewModels;
using System.Data;
using System.Data.Entity;
using System.Web.Security;
using System.Data.Entity.Validation;
using System.IO;
using Microsoft.Ajax.Utilities;
using System.Net.Mail;
namespace ShopINdeal.Controllers
{
[SessionExpire]
public class WholeSaleController : Controller
{
public ShopINdealEntities4 db = new ShopINdealEntities4();
[HttpGet]
public ActionResult CreateWholeSale()
{
return View();
}
[HttpPost]
public ActionResult CreateWholeSale()
{
return View();
}
WebConfig:-
4 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Malvik BhavsarPosted Dec 2, 2016, 7:21 AM
Please check following link for answer:
http://stackoverflow.com/questions/1431733/keeping-asp-net-session-open-alive
Khaja MoizuddinPosted Dec 2, 2016, 7:10 AM
Dr.Ajay KashyapPosted Dec 2, 2016, 7:07 AM
Malvik BhavsarPosted Dec 2, 2016, 6:55 AM