Link to home
Start Free TrialLog in
Avatar of westdh
westdhFlag for United States of America

asked on

asp.net classic _ need help on reading a radio button. and formating a email body text

How do I read the radio buttons for RescueType a request the form field?

strTextBody       =  "Rescue Type: " & ((request.Form("RescueType")) Or (request.Form("RescueType"))) & vbcrlf & "FirstName: " & request.Form("FirstName")
the form looks like

Please select an option
O  I want to report a Westie in need  
O  I personally have a Westie who needs to be surrendered  
How may we contact you?  
*First Name    
*Last Name    

<tr valign="baseline" align="left">
                        <td nowrap colspan="2" class="admincategory">
                          <input type="radio" name="RescueType" value="I want to report a Westie in need">
                          I want to report a Westie in need
                          </td>
                      </tr>
                      <tr valign="baseline" align="left">
                  <td nowrap colspan="2" class="admincategory">
                          <input type="radio" name="RescueType" value="I personally have a Westie who needs to be relinquished">
                        I personally have a Westie who needs to be surrendered
                       </td>
                      </tr>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial