Justin: I am using forms.submit() because my code is doing something
like the following
<INPUT onclick="alert('about to start'); process_table('ShadFrmX',
'FValues');" type="button" value="Continue" >
Basically, I have a another form (called ShadFrmX) in my HTML that
starts out as being empty. This form is filled with the execution of
process_table with values to be sent to the server.
After the form is filled, then I call the code above (although all of
it is not present) to submit the form to the server.
The form submission works. The values do come over. I have seen it in
the debugger

and have been able to save them in a file.
The thing is, I don't know what event I should process or function
module I should use on the server side to when I do a forms.submit() on
the client side. Someone said to use page_load and a flag IsPostBack
but this does not work
Will a submit button run the javascript code I have?
Since I am new to this programming area - I was wondering what would be
the right way to process this.
Peter: Is there a place where I can get more information (hopefully a
sample) on how to use doSubmit()?
Thanks for the help!