asp.net mvc - Mvc .net Session Expiration issue -
hi working on mvc.net. in application have done after 15mnts have displayed popup on screen warn session expire. , if user click on "ok" button async request sent server refresh session. not refreshing session. reason? can body has idea handle this?
it if post code you're using (to send async request, , code runs on server side).
as shot in dark, if you're using sort of web service, might need explicitly turn on session support, eg:
[webmethod(enablesession=true)] public void ping() { }
Comments
Post a Comment