Xiaoth:
Dycacian:I am at a point where I would like to upgrade to .Net 2.0, but I don't want to break IssueTracker. Has anyone has issues with this? If so what were the issues. Any info would be great.
Yes. Persisted authentication credentials via encrypted cookies broke after updating the site to run on ASP.NET 2.0. Resolution was to either delete the cookies on the web browser or have an error handling routine to reset the cookies. We chose the latter, but now the cookie doesn't persist longer than 30 min... still looking into it.
Jon
To be fair though (and pedantic, while I'm at it :-) ) that's not an issue with Issue Tracker...That's an issue with changing the runtime environment from ASP.Net v1.1 to ASP.Net v2.0. You'll see this most any time you have an existing ASP.Net 1.1 application using form auth, where you've persisted the forms auth cookies, and you switch it to run under ASP.Net 2.0.
Not that it's not a valid issue to look out for, but it's an issue to look out for anytime you update an existing 1.x forms auth app to 2.0.
BTW...Your issue with the cookie not persisting longer than 30 minutes is due to a change in how ASP.Net 2.0 determines the timeout of persistant forms authentication cookies. You can make them persist longer by increasing the "timeout" attribute of the forms element in the authentication node of web.config.
Hope this helps,
Xander