Hey,
My web site has a registration form that the user can submit. When they submit the form and there are no errors, I then add the data to my database. What I would also like to do is take them to a thankyou page.
I have tried using "Response.Redirect("thankspage.aspx")", however, I get an error when you submit the form. From what I can tell the error is saying that it cant find a text box which is defined in my registration page, in my thankyou page.
I know that this text box is not defined in my thankyou page, then how come it is looking for it?
From what I have read, it seems to me that using "Server.Transfer("thankyoupage.aspx")" would give an error similar to this, but I don't know why when using response.redirect, i get this error.
I thought all response.redirect did was take the user to another page....
Thankyou very much for your time in advance......
My web site has a registration form that the user can submit. When they submit the form and there are no errors, I then add the data to my database. What I would also like to do is take them to a thankyou page.
I have tried using "Response.Redirect("thankspage.aspx")", however, I get an error when you submit the form. From what I can tell the error is saying that it cant find a text box which is defined in my registration page, in my thankyou page.
I know that this text box is not defined in my thankyou page, then how come it is looking for it?
From what I have read, it seems to me that using "Server.Transfer("thankyoupage.aspx")" would give an error similar to this, but I don't know why when using response.redirect, i get this error.
I thought all response.redirect did was take the user to another page....
Thankyou very much for your time in advance......