How can I create a pre-filled ASP form to to make it easier to submit repetive data to a database?

Feb 22nd, 2009 | By KC | Category: ASP Related

I have to fill out orders all day as well as they make use of an ASP form. There have been fields which remaing the same for up to twenty orders in the row. How can we pre-fill an ASP form? The pulldowns have been not sufficient, thanks.

Tags: , ,

One comment
Leave a comment »

  1. I store data in a cookie.

    For Ex

    I have two buttons
    'Save Info' 'Recall Info'

    The information is loaded from the database. If I know this has to be re-typed like address etc I let the user hit the SI button and I store the information to a cookie. On the next fill they just hit the RI button and refill the fields with the info from the cookie.

    Now all they have to fill in is data that changes. Name etc.

Leave Comment