Korrekt visning af danske tegn
Hey,Hvorn' indsætter jeg "æ" i "Bemærkninger: "&request.form("note")&vbcrlf
så det vises korrekt i e-mail'en..?
<%
Set objMail = Server.CreateObject( "CDONTS.NewMail" )
objMail.To = "xx@xx.dk"
'objMail.From = request.form("mail")
objMail.Subject = request.form("subject")
objMail.Body = "Dato for bestilling: "&request.form("datobestilt")&vbcrlf&vbcrlf &_
"Bestilling af: "&request.form("bestillingaf")&vbcrlf &_
"Dato for levering: "&request.form("datolevering")&vbcrlf&vbcrlf &_
"Bestilt af: "&request.form("bestiltaf")&vbcrlf &_
"Rekv. nr.: "&request.form("rekvnr")&vbcrlf&vbcrlf&vbcrlf &_
"Autoforhandler: "&request.form("forhandler")&vbcrlf &_
"Kontaktperson: "&request.form("kontaktperson")&vbcrlf &_
"Telefon: "&request.form("telefon")&vbcrlf&vbcrlf &_
"Bemærkninger: "&request.form("note")&vbcrlf
objMail.Host = "smtp1.b-one.nu"
objMail.Send
Set objMail = Nothing
response.redirect("http://www.xxx.dk/Hosting/xxx.dk/response.asp")
%>
