hi, i'm writing script part of an application form by asp.net, sth like
-------------------------------
<script runat="server">
Sub Submit_ApplicationForm(Source As Object, E As EventArgs)
Dim sMsg As String
sMsg+= "Application Form:" & vbcrlf +"<BR>" +"<BR>"
sMsg+= "*Your Personal Detail*" & vbcrlf +"<BR>"
sMsg+= "Title: " & Title.SelectedItem.Text & vbcrlf +"<BR>"
sMsg+= "Surname Name: " & surName.Text & vbcrlf +"<BR>"
sMsg+= "Given Name: " & givName.Text & vbcrlf +"<BR>"
sMsg+= "Address: " & Address.Text & vbcrlf +"<BR>"
</script>
---------------------------------------------------------
and sMsg is the variable of content which will be sent to admin by email.
My question is how can i modify the font size, color or style of suffix info in the script, like "Application Form", "Title", "Surname", etc
Thanks a lot
-------------------------------
<script runat="server">
Sub Submit_ApplicationForm(Source As Object, E As EventArgs)
Dim sMsg As String
sMsg+= "Application Form:" & vbcrlf +"<BR>" +"<BR>"
sMsg+= "*Your Personal Detail*" & vbcrlf +"<BR>"
sMsg+= "Title: " & Title.SelectedItem.Text & vbcrlf +"<BR>"
sMsg+= "Surname Name: " & surName.Text & vbcrlf +"<BR>"
sMsg+= "Given Name: " & givName.Text & vbcrlf +"<BR>"
sMsg+= "Address: " & Address.Text & vbcrlf +"<BR>"
</script>
---------------------------------------------------------
and sMsg is the variable of content which will be sent to admin by email.
My question is how can i modify the font size, color or style of suffix info in the script, like "Application Form", "Title", "Surname", etc
Thanks a lot