sewells
Posts: 13
|
| Posted: 06/09/2004, 11:31 AM |
|
Thanks anyone who can help here.
summary: i have a form where one parameter effects the value of another using custom code in the "on submit" custom code. Problem is the second parameter is never adjusted as the form redirects.
Details:
I have a form with a single parameter input from a user. Once user submits form input, I want to lookup a database value and then add the result of that value to a hidden form input. So far, I've not been successful with this.
Here is my html form pseudocode
<form> <input user ID> <hidden userparameter><submit button>
here is my hidden pseudo code (in asp)
formname.userparameter.value
= CCDlookup(info based on form userid)
Thanks again anyone who can help.
regards
|
 |
 |
Thuzar
|
| Posted: 08/26/2004, 8:41 PM |
|
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 08/28/2004, 12:01 AM |
|
You may need to write a function to perform the CCDLookup and perform a db update in the After_Insert and/or After_Update event of the record.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
|