23kStudios
IS-IT--Management
Got a form going on, and i want things to be bolded that come out, like each of the items category in bold then just regular text. Right now i have everything reguarly coming out, but i want to bold the titles =(
Here look at this...
strMsgHeader = "<STRONG>SAP Invite Form Information Follows:</STRONG>" & vbCrLf & "-----------------------------------" & vbCrLf & vbCrLf & vbCrLf
for i = 1 to Request.Form.Count
strMsgInfo = strMsgInfo & <STRONG>Request.Form.Key(i)</STRONG> & ": " & vbCrLf & "----" & vbCrLf & Request.Form.Item(i) & vbCrLf & vbCrLf
next
strMsgFooter = vbCrLf & vbCrLf & "*End of form*" & vbCrLf & "
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
**
Where the 2 <STRONG>'s are, is where i want that text to be in Bold! But obviously <b> / <strong> just aren't working. I had this a while ago but i don't remember what i did!! What can i do to fix this?? I want this to come out bold for each area in the form, and regular text for what the value of selection is...
can anyone help?
what about changing colors if possible? or font face...
Here look at this...
strMsgHeader = "<STRONG>SAP Invite Form Information Follows:</STRONG>" & vbCrLf & "-----------------------------------" & vbCrLf & vbCrLf & vbCrLf
for i = 1 to Request.Form.Count
strMsgInfo = strMsgInfo & <STRONG>Request.Form.Key(i)</STRONG> & ": " & vbCrLf & "----" & vbCrLf & Request.Form.Item(i) & vbCrLf & vbCrLf
next
strMsgFooter = vbCrLf & vbCrLf & "*End of form*" & vbCrLf & "
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
**
Where the 2 <STRONG>'s are, is where i want that text to be in Bold! But obviously <b> / <strong> just aren't working. I had this a while ago but i don't remember what i did!! What can i do to fix this?? I want this to come out bold for each area in the form, and regular text for what the value of selection is...
can anyone help?
what about changing colors if possible? or font face...