Posted on: 8/7/2003 4:13:25 PM | Views : 506

Concerning Radio ButtonList.... This is the table i'm working on... Name: E-Mail Address: Country: Mail me tour details: Mail format: Now i had to click the radio button so that i could set the ListItem Collection Editor to HTML and Text with Both The text and Value set The Same.... HTML , and Text I entered the code and everything is working however it was suppose to appear oce i hit the submit button.. this is the code: Sub Button1_Click(sender As Object, e As EventArgs) Dim Message As String Message = "Hello " & txtName.Text & "." If chkTour.Checked Then Message &= "We will send you details of the tour " & _ "schedule for "& cboCountry.SelectedItem.Text End If If radMail.SelectedItem.Value = "HTML" Then Label1.Text = "Using HTML format for mail. Sending: " & Message Else Label1.Text = "Using plain format for mail. Sending:
" & Message End If can anyone tell me what i a ...

Go to the complete details ...