I have a wired script in one of the ASP.net applications.
I am using ASP.net membership with my custom "roleManager",
and having a tag below in web.config to restrict any user who does not have a Keywords role (role) to access the Keywords folder (path)
<location path="Keywords">
<system.web>
<authorization>
<allow roles="Keywords"/>
<deny users="*" />
</authorization>
</system.web>
</location>
If any user with any other role allows you to evaluate this URL (keywords in this case), it will be redirected to the user access page.
Now everything works fine, but when I left my application with inactivity for 30 minutes, I canβt visit the Keywords, all the time I get the user access page, if I close the browser, the login starts working normally again.
, .