Version 0.3 completes full database support (including ODBC). Also included in this realease is a sub-version for ASP.NET 2.0.
A test website ViewStateTest for 1.x is also included.
Here are a few steps on how to test the library (please adapt to 2005/2008 yourselves):
1. Create an ASP.NET Web Application using Visual Studio 2003.
2. Add a reference to this library (by project or by assembly).
3. Create a new Web Form, say WebForm1.aspx.
4. Modify codebehind code file WebForm1.aspx.cs and make it inherit from System.Web.UI.PageEx, like this:
public class WebForm1 : System.Web.UI.PageEx
5. Add several appSettings to Web.config file (please refer to readme.txt).
6. Try to store various data into ViewState and run your application; see PageExTest.aspx.cs.