Forum Moderators: open
Here is the part of the code where I can remove the <b> tag to remove the bold....how do I change it to change the font size?
body = "<table border=""0"" cellpadding=""2"" cellspacing=""0"">" & vbCrLf
for each name in fieldOrder
body = body _
& "<tr valign=""top"">" _
& "<td><b>" & name & ":</b></td>" _
& "<td>" & Request.Form(name) & "</td>" _
& "</tr>" & vbCrLf
next
body = body & "</table>" & vbCrLf
I would appreciate any help, because it will make me look like I am smarter than the other guy in the office who "knows everything"....
body = "<table border=""0"" cellpadding=""2"" cellspacing=""0"">" & vbCrLf
for each name in fieldOrder
body = body _
& "<tr valign=""top"">" _
& "<td><font size='1'>" & name & ":</font></td>" _
& "<td>" & Request.Form(name) & "</td>" _
& "</tr>" & vbCrLf
next
body = body & "</table>" & vbCrLf
Still doesn't do exactly what I wanted...they wanted to be able to print out the results in the email on one sheet of paper...