This topic is locked

Form Submit

11/4/2007 5:55:41 PM
ASPRunnerPro General questions
G
ghj01 author

I need to parse the contents of a form into another ASP program after saving the data to an access database.

I do not seem to be able to do this and need to know how it can be achieved from the single click of the submit button.

Thanks in advance.

Glynn.

Sergey Kornilov admin 11/4/2007

Here is the example of AfterAdd event that also passes the data:

Response.Redirect "AnotherProgram.asp?Field1=" & dict("Field1") "&Field2=" & dict("Field2")


In AnotherProgram.asp you can use Request.QueryString("Field1") to access the Field1 value.