VSS KB Articles

Outlook 2010 Crashes when reading or opening some emails
8/14/2010
Outlook 2010 Crashes when reading or opening some emails - With a solution from VSS Business Solutions


Mixed content pages allow passing content between zones
6/30/2010
Did you know about protocol-relative hyperlinks?


AJAX controls greyed out in ToolBox
1/20/2010
I had an issue with Visual Studio Pro 2008 SP1 where the Controls were greyed out in the ToolBox. These are the steps I used to resolve it.


exceeded the maximum of xxx objects of type "objtFolder"
1/4/2010
ERROR: exceeded the maximum of xxx objects of type "objtFolder" on Exchange 2003 server logs.


ASP.NET 2.0 Extending the Forms Authentication timeout - Site log off timer
12/21/2009
One thing to be aware of when upgrading from ASP.NET V1.1 to V2.0 is that the forms authentication timeout value has changed to be 30 minutes by default.


    

12/21/2009
ASP.NET 2.0 Extending the Forms Authentication timeout - Site log off timer

One thing to be aware of when upgrading from ASP.NET V1.1 to V2.0 is that the forms authentication timeout value has changed to be 30 minutes by default.  This means that after 30 minutes of inactivity, a user will be prompted to login again (note: everytime they hit the site the 30 minute window clock gets reset -- so it is only if they are idle that it will timeout). 

If you want to change the timeout value to be longer, you can easily change the timeout value in your local web.config file (the timeout value is in minutes):

<system.web>
    <authentication mode="Forms">
          <forms timeout="50000000"/>
    </authentication>
</system.web>