Re: Submitting Dynamic HTML components to Db. Procedures [message #367328] |
Tue, 03 August 1999 10:46 |
Bharat Bhushan
Messages: 1 Registered: August 1999
|
Junior Member |
|
|
Well, Kelly thanx for the post.
I just wanted to share another way we have found
and implemented to submit dynamic rows / data at
the backend. Following is a detailed explanation:-
o create 2 HTML forms. one having all your dynamic
fields, second will have only hidden variables
and submit buttons.
o When a use click on OK to submit the data, we
concatinate the hidden variable with all the
dynamic field values with delimeters. The form
gets submitted to the single backend procedure,
it will then break-up the passed value against
the delimeters and would utilize the values
appropriately.
Hope it makes some sense :-)
Bharat Bhushan
bharatb@hotmail.com
|
|
|
Re: Submitting Dynamic HTML components to Db. Procedures [message #367331 is a reply to message #367328] |
Mon, 27 September 1999 07:50 |
ulli
Messages: 24 Registered: September 1999
|
Junior Member |
|
|
package proc has a plsql table as param.
submission of a dyn. count of forminputs
as pairs of name/value:
input type=hidden name=c_vararg value=username
input type=text name=c_vararg
input type=hidden name=c_vararg value=userpwd
input type=text name=c_vararg
a.s.o
bye, ulli
|
|
|