thank you very much everybody.. speccially you pmormr
.. it works like a charm now
, and here´s the code that made it possible..(Easy but tricky "AT LEAST FOR ME")
'Initialse strBody string with the body of the e-mail
strBody = "<h2>E-mail sent from the Sponsorship Response Form .-La Gala-.</h2>"
strBody = strBody & "<br><b>Contact Name: </b>" & Request.Form("SRFCName")
strBody = strBody & "<br><br><b>Company: </b>" & Request.Form("SRFComp")
strBody = strBody & "<br><br><b>Address: -</b>" & Request.Form("SRFAd")
strBody = strBody & "<br><br><b>Telephone: </b>" & Request.Form("SRFPho")
strBody = strBody & "<br><br><b>Fax: </b>" & Request.Form("SRFFax")
strBody = strBody & "<br><br><b>E-mail: </b>" & Request.Form("SRFEmail")
strBody = strBody & "<br><br><b>The Company wants to be a: </b>"
'I'm going to look at your rating buttons, and find the level from there
sponlevel = Request.Form("sp_level")
strBody = strBody & sponlevel
strBody = strBody & "<br><br><b>Artwork Enclosed?:</b>"
If Request.Form("SRF06") = "ON" Then
strBody = strBody & "<br>Yes"
Else
strBody = strBody & "<br>No"
End If
Thank you pmormr, you saved my day 