Das mit dem EfA-Fontsize-Script mitgelieferte cookies.js ist buggy. Es macht alle Cookies zu Domain-Cookies mit 7 Tagen Gültigkeit. Damit werden auch temporäre Session-Cookies zu permanenten Cookies.
Posts Tagged ‘ASP.Net’
How to make ASP.net session state testable
Posted in dotnet, tagged Application, ASP.Net, HttpApplicationState, HttpSessionState, Page, Session, Session State, TDD, Testable Code, Type Safe, Wrapper on May 19, 2008 | 1 Comment »
If you’ve read my Article about How to wrap the ASP.net session state I want to show you how to make the wrapper testable using the Free .Net Ambient Context Pattern Implementation.
If you only want a easy ASP.net session state wrapper snippet without any dependencies, try How to wrap the ASP.net session state
In the initial [...]
How to wrap the ASP.net session state
Posted in dotnet, tagged Application, ASP.Net, HttpApplicationState, HttpSessionState, Page, Session, Session State, Type Safe, Wrapper on May 14, 2008 | 20 Comments »
Implementing a SessionVariable that wraps HttpContext.Current.Session in a intuitive and typesafe manner.