I've got a configuration problem with web.config in a Windows Server 2008, Framework 4.0. My website has a login page and it follows these rules:
Login.aspx is the login page by default and the web site starts allways with this one.
Login.apsx includes a captcha page for security reasons ("Captcha/wf_ImgJpeg.aspx")
Web site uses sessionState mode StateServer for controlling user session time. It is setup for 03 hours.
These rules are configured in the web.config file:
<system.web>
<authentication mode="Forms">
<forms name="myautocoockie" loginUrl="Login.aspx" protection="All" path="/" timeout="60" slidingExpiration="false"/>
</authentication>
<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data s ...
Go to the complete details ...