I'm really strugling with something that should be very basic. I've got an SQL db holding user preference information - 0 for no and 1 for yes
In the head i have:
in the body I have:
And of course it doesn't work.
Please help
Craig
In the head i have:
Code:
<script runat="server" language="VB"> Function general() as String IIf question.FieldValue("question_general_info", Container) = "1",Return("<img src='images/check2.gif'>"),Return("<img src='images/delete2.gif'>") End If End Function </script>
Code:
<% response.write(general()) %>
Please help
Craig
Comment