Author: probert | Posted on: 8/15/2008 8:45:08 AM | Views : 1085

Hi everyone,

 I'm building a request system in ASP.Net where users can log in and request new access to different business applications. We are being audited on the demands so we need to keep a "snapshot" of the form when the user clicks on the submit button.

I cannot only keep the data entered in the fields by the user: the form must be identical as it was when the user submitted it. It has to be a real "snapshot".

What that means is that, let say we are adding a field to the form today, and let's say I want to get back and look at a form that has been submitted yesterday, when the form will show up, it should not show the new field.

The idea I had was to retrieve the HTML code of the web page, along with every info the user has entered, and to save this HTML into a database so that, regardless of any changes to the form, the original demand will always show up the same way.

 Is there any way .Net to acce ...

Go to the complete details ...