Perhaps I need to rethink what I want to do. Basically my collection is a fo collection around different values ββfor a drop down list. This is being uploaded by the client and my webpage should display it.
I realized that the client can send it to me as serialized data, I gave them xsd and they will send it to me asynchronously during login. Page 1 will receive serialized data. The login page will register them. After page 1 receives the data, it will be deserialized into my strongly typed collection, which, in turn, will be used to create a drop-down list in page2.aspx
why am I doing this in such a primitive way. my hands are bound by restriction, and I try not to use session state to store this object, if I can avoid it.
Each user login comes with different drop-down options. user 1 caan has 10 parameters, and user 2 can have 200 options.
source share