rtnMichael
Programmer
hey,
I have some session variables being declared at the top of some pages. Maybe it's easier to show code:
Page 1: set up forms and variable names for page 2
Page 2:
(up on top of page)
session("program"
= request.form("program_name"
session("email"
= request.form("txtEmail"
session("database"
= request.form("database_name"
etc....
page 3:
session("test_type"
= request.form("test_type"
page 4:
Email: <%Response.write session("email"
%>
Program:<%Response.write session("program"
%>
Database:<%Response.write session("database"
%>
Test Type:<%Response.write session("test_type"
%>
I place a button to add other things on page 4 to send to page 5
page 5 has the option to add other things or just to submit as is. At this point is the problem. The "cancel" button will take you back to the previous page, but with the "test type" area blank. The code is the same for each entry, but only the "test type" is gone.
can someone help me, I can't seem to see what the problem is.
Thanks
M
I have some session variables being declared at the top of some pages. Maybe it's easier to show code:
Page 1: set up forms and variable names for page 2
Page 2:
(up on top of page)
session("program"
session("email"
session("database"
etc....
page 3:
session("test_type"
page 4:
Email: <%Response.write session("email"
Program:<%Response.write session("program"
Database:<%Response.write session("database"
Test Type:<%Response.write session("test_type"
I place a button to add other things on page 4 to send to page 5
page 5 has the option to add other things or just to submit as is. At this point is the problem. The "cancel" button will take you back to the previous page, but with the "test type" area blank. The code is the same for each entry, but only the "test type" is gone.
can someone help me, I can't seem to see what the problem is.
Thanks
M