URL parameters
-
Hi, I would like to know how can I have one page Register.aspx in my case, At first I have textboxes there (Name, Surname, Username, ...) then Submit button. After an users clicks on Submit, I want to show him: "Your registration data were successfully sent to the administrator. The activation can take about 48 hours. Thank you for your registration). I solved it this way: I created another page: RegistrationResult.aspx, where I have HTML label, in which is that text. I know it is bad solution, I would like to do it with parameters in URL adress, but I don't know how can I get this parameters and how to show desired content (to use panel and set Visibility or how) Thanks for your help or article link.
-
Hi, I would like to know how can I have one page Register.aspx in my case, At first I have textboxes there (Name, Surname, Username, ...) then Submit button. After an users clicks on Submit, I want to show him: "Your registration data were successfully sent to the administrator. The activation can take about 48 hours. Thank you for your registration). I solved it this way: I created another page: RegistrationResult.aspx, where I have HTML label, in which is that text. I know it is bad solution, I would like to do it with parameters in URL adress, but I don't know how can I get this parameters and how to show desired content (to use panel and set Visibility or how) Thanks for your help or article link.
A simple method is that, you can create different session variables, and then you can assign the desired values to them.U can also retrieve the data from them. Like this session.item("Name")="------------" session.item("Surname")="----------" U can create these variables on Submit button's Onclick Event. ;P;P;P
-
Hi, I would like to know how can I have one page Register.aspx in my case, At first I have textboxes there (Name, Surname, Username, ...) then Submit button. After an users clicks on Submit, I want to show him: "Your registration data were successfully sent to the administrator. The activation can take about 48 hours. Thank you for your registration). I solved it this way: I created another page: RegistrationResult.aspx, where I have HTML label, in which is that text. I know it is bad solution, I would like to do it with parameters in URL adress, but I don't know how can I get this parameters and how to show desired content (to use panel and set Visibility or how) Thanks for your help or article link.