I am working on a project where the user has 8 radio buttons to choose from, and when one is selected and the submit button is pressed, the header.jpg and radiobuttonlist on the left stay the same, but a picture (of the selected item)appears to the right. I have 8 webforms, and all of the coding will be identical for the pages, so I just need help with the submit button code.
Here is my Page_Load code:
If Not IsPostBack Then
Dim arrChoices As New ArrayList(9)
arrChoices.Add("Gifts")
arrChoices.Add("Jewelry")
arrChoices.Add("Clothing")
arrChoices.Add("Food")
arrChoices.Add("Books, Music & Video")
arrChoices.Add("Bridal")
arrChoices.Add("Crystal & China")
arrChoices.Add("Pottery")
rblChoices.DataSource = arrChoices
rblChoices.DataBind()
End If
Any help would be greatly appreaciated. I'm just having trouble setting up the if statement of how to show the aspx page that corresponds with what was chosen. Thanks
Bookmarks