Link to home
Start Free TrialLog in
Avatar of maredzki
maredzki

asked on

Web forms data entry

Hello experts,
I am tasked with converting pdf forms to a asp.net application and am looking for best solutions. There are about 50 different forms (vacation, requisition etc). I would like to have the data presented to the user before they are submitted so that corrections can be made. I've done this with passing the data in session variables back and forth but that becomes a hassle sometimes, would panels work better? Any other, more friendly options?

Thank you!
Marek
Avatar of Ravi Vaddadi
Ravi Vaddadi
Flag of United States of America image

one way is to use Html 5 Local storage. You could use Modernzr to check if local storage is supported by the browser. If the browser does not support then you will have to depend on other java script libraries or use a home grown java script cache.

Also, you might have to store the data on the server at some point so you could retain in between the user sessions.

Do you use sql server or state server to store your session?

Check this link on local storage
http://diveintohtml5.info/storage.html
Avatar of maredzki
maredzki

ASKER

Good point.

We can use sql if we want to, without learning html5 storage would that be a better way of handling it? What I'm concerned is that one form can have 10 text boxes that I will have to retain data for and another May have 50 plus some checkbox values.

Let me know as we are currently are planning.

Cheers.
ASKER CERTIFIED SOLUTION
Avatar of Ravi Vaddadi
Ravi Vaddadi
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank your for the information, much appreciated.

Marek