|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
forms
I have a very large form that clients will enter data into. When they submit the form I would like a page to come up where they can opt to confirm the form or go back and edit the form. I know this is possible is there a way to automate this so I dont have to retype the whole form again putting all the data in manual.
|
|
#2
|
|||
|
|||
|
Yea, i'd be very sad if that wasn't automated.
What exactly is your question? |
|
#3
|
|||
|
|||
|
unatratnag I would like to first off thank you for all your help. Here is what I need. As I said I have a very large form. When the client subits the form I want to take them to a page where they can review the information, not editable on this page. On this page they will have the option to go back to the page where they can edit their information, so I guess a way to populate the form fields for editing if they opt to do that. The other part of the automation is creating a replica form, which is not editable where they can review the data. So basically instead of the form fields, like the original form, it will have their data populated there.
|
|
#4
|
|||
|
|||
|
yes, do you know how to prepulate fields as well as make them readonly or disabled?
example <input type='text' READONLY name='txt1' value='" & request.form("txt1") & "'> you can replace READONLY with disabled if you want, disabled has it greyed out, both are not writable. you just say value='blah' for the prepopulation part. All other html elements follow the same pattern basically on the previous page, you have the same thing except without the READONLY and it will work, yaay! good luck. let me know if you have any problems. |
|
#5
|
|||
|
|||
|
ok that is great, the only other question i have is on the automation part. if i have the original form already made is there a way to dynamically make one page totally readonly without going to each field and typing readonly and as well to automatically populate the value part from the clients input from the original form, or do i hvae to manually input that into each form field
|
|
#6
|
|||
|
|||
|
sorta, but it'd be easier to just manually type readonly in.....
|
|
#7
|
|||
|
|||
|
what about the value=...request.form thing
|
|
#8
|
|||
|
|||
|
ok for the value=...thing i have split the incoming form 2x so that b(0) would hold the form field name, so now is there a way to use that to populate the values for the confirmation form
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > forms |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|