gcapp
09-24-2002, 03:33 AM
I have a simple syntax question that I can't figure out.
I have this asp code:
StrALL = StrALL & "Event Location" & vbcrlf
StrALL = StrALL & "State: " & StrLocState & vbcrlf
StrALL = StrALL & "Region: " & StrLocRegion & vbcrlf
StrALL = StrALL & "Country: " & StrLocCounty & vbcrlf
When I get an email the results come back like this:
Event Location
State: New York
Region: Western
Country: USA
How can I change the line of code so the line
Event Location will appear in my email in bold text?
AND
How can I change the line of code to have a break in the email so the line come out like this:
Event Location
State: New York
----break------
Region: Western
Any help will be appreciated.
Gary
I have this asp code:
StrALL = StrALL & "Event Location" & vbcrlf
StrALL = StrALL & "State: " & StrLocState & vbcrlf
StrALL = StrALL & "Region: " & StrLocRegion & vbcrlf
StrALL = StrALL & "Country: " & StrLocCounty & vbcrlf
When I get an email the results come back like this:
Event Location
State: New York
Region: Western
Country: USA
How can I change the line of code so the line
Event Location will appear in my email in bold text?
AND
How can I change the line of code to have a break in the email so the line come out like this:
Event Location
State: New York
----break------
Region: Western
Any help will be appreciated.
Gary