I am currently playing with a demo version of Code Charge Studio. I have the following code which should output the user assigned to a task in Bold blue, if it is the user logged on.
if tasks.Recordset.Fields("user_id_assign_to"= Session("UserID" then
tasks.user_id_assign_to.Value= "<b><font color=""blue"">"& tasks.user_id_assign_to.Value &"</font></b>"
End If
but what I get is the following <b><font color="blue">User Name</b></font>
Any ideas? I have tried sticking <html> tags in there and shuffling my quotes.
Thanks in advance
if tasks.Recordset.Fields("user_id_assign_to"= Session("UserID" then
tasks.user_id_assign_to.Value= "<b><font color=""blue"">"& tasks.user_id_assign_to.Value &"</font></b>"
End If
but what I get is the following <b><font color="blue">User Name</b></font>
Any ideas? I have tried sticking <html> tags in there and shuffling my quotes.
Thanks in advance