mchoudhury
Programmer
Hi guys,
On this form i have dropdown list, when selected and the continue button is the values are inserted on to the database. On the next web page i have a back button, if pressed it goes to the last page view with requesting the id it was submitted from the DB.
I now also want to retrive what was selected on the dropdown list to show up when the back button is pressed. So if Yes was selected and passed on the DB will insert the value true. When i press the back button that Yes will need to load on theat drop down list.
Can someone help me on how i could do this.
The continue button:
Response.Redirect("showtable.aspx?tid=" & tmid & "&pc=" & strPostCode)
The Back Button:
Private Sub btnback_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnback.Click
Response.Redirect("TelephoneUsage.aspx?tid=" & TM.TelephoneInputFormID & "&pc=" & strPostCode)
End Sub
Thanks
Mac
On this form i have dropdown list, when selected and the continue button is the values are inserted on to the database. On the next web page i have a back button, if pressed it goes to the last page view with requesting the id it was submitted from the DB.
I now also want to retrive what was selected on the dropdown list to show up when the back button is pressed. So if Yes was selected and passed on the DB will insert the value true. When i press the back button that Yes will need to load on theat drop down list.
Can someone help me on how i could do this.
The continue button:
Response.Redirect("showtable.aspx?tid=" & tmid & "&pc=" & strPostCode)
The Back Button:
Private Sub btnback_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnback.Click
Response.Redirect("TelephoneUsage.aspx?tid=" & TM.TelephoneInputFormID & "&pc=" & strPostCode)
End Sub
Thanks
Mac