Dear Experts,
How do I add a double-quote (") into my string as follow instead of using a
single quote?
Old:
strBodyText = "<HTML><BODY>" & "<FORM Name='frmReminderReport' METHOD='POST'
action='\teknion\leave_system\ReminderReport.asp'><TABLE
Border=1><TR><TD>Supervisor</TD><TD>" & rsDistinctSupervisor("Supervisor") &
"</TD></TR>"
New:
strBodyText = "<HTML><BODY>" & "<FORM Name="frmReminderReport" METHOD="POST"
action="\teknion\leave_system\ReminderReport.asp"><TABLE
Border=1><TR><TD>Supervisor</TD><TD>" & rsDistinctSupervisor("Supervisor") &
"</TD></TR>"
Many thanks in advance.