Storing form data

  • Thread starter Thread starter garethdjames
  • Start date Start date
G

garethdjames

I am looking for a generic way of storing and reloading form data,

I will implement IPostBackHandler and enumerate through the form
objects, then persist them to my DB,

I then want to on PageLoad, load this state and apply it to the state
of the form,

I don't want to loop through each name value and set it manually, I'd
like to do it genericaly,

It would be good if I could do Request.Form = XXX, but the Request
object is read only
 
Back
Top