Hi All,
I am doing form authentication as:
<system.web>
<authentication mode="Forms">
<forms name=".ASPXAUTH" loginUrl="~/Default.aspx" defaultUrl="~/Home.aspx" protection="All" timeout="1" />
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime/>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>
After i login it is not timming out after the minute.
What am I missing? Do i need to setup something else?
Thanks
Go to the complete details ...