Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
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.
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.