I'm trying to write a form that will send an html email with the responses using ASPEmail. Everything looks great except multi-line form fields. If someone enters a line break in the field, how can I pass that through.
For instance, if I have this field on my form:
Department(s) job charged to<BR>
<textarea name="charge_to" cols="75" rows="2" wrap="VIRTUAL"></textarea>
I have this in my script that processes the form, which puts all the data on one line:
strBody = strBody & "<b>Department(s) Job Charged To: </b> " & strChargeTo & "<BR>" & vbCrLf
Suggestions?
Thanks in advance!
Michelle
For instance, if I have this field on my form:
Department(s) job charged to<BR>
<textarea name="charge_to" cols="75" rows="2" wrap="VIRTUAL"></textarea>
I have this in my script that processes the form, which puts all the data on one line:
strBody = strBody & "<b>Department(s) Job Charged To: </b> " & strChargeTo & "<BR>" & vbCrLf
Suggestions?
Thanks in advance!
Michelle