J
|
Jane 5/10/2007 |
Hi, Sub AfterEdit() '** Redirect to another page **** Response.Redirect "TableName_view.asp?editid1=" & postvalue("editid1") End Sub
|
R
|
ryn004 author 5/11/2007 |
Thanks. However instead of TableName_view.asp I'm using TableName_add.asp. |
J
|
Jane 5/11/2007 |
Hi, Session("FieldName") = postvalue("editid1")
|
R
|
ryn004 author 5/11/2007 |
The value in the table 2 field is coming blank. This is what I did: Sub AfterAdd() '** Redirect to another page **** Session("Property_ID") = postvalue("editid1") Response.Redirect "table2.asp" End Sub and under the Visual Editor for table 2 I assigned the default value of a textfield to: Session("Property_ID")
|
![]() |
Sergey Kornilov admin 5/11/2007 |
You use wrong event. |