I have an ASP.NET application where I need to allow users to save GIS map buffers for future use. These buffers are non-serializable objects, so I can't store them as XML. I can put them in the Session as objects, but now I need to manually put the in a custom SQL Server 2005 database. Would I put them in a varbinary(max) column, and if so, does anyone have an example of manually storing an ASP.NET session object in a database using ADO.NET? Thanks.
Thomas