Hello,
Quick question: Suppose I have created a record set (called ProductRS) that includes all of the information about a given product based on productID. One of the "fields" in my record set is BOL and can have either a true or false value. If I want to set up an if then else statement so that I can print something to a web page according to whether the value of BOL is true or false, what should the code look like? I've tried the following:
<%If ProductRS("BOL") = False Then
response.write ProductRS("TOC")
Else
response.write ""
End if%>
For some reason the statement doesn't work, but I don't get an error message. It just doesn't do anything. Any insight on what's wrong with my code? Thanks!
Kristine