Hi, I am using this code exactly as shown: It works but when my page loads it continues to say "Loading" and will not ever complete and let me into the records?
Any ideas why? AspRunner 6.2
Set View as type of this field to Custom and use the following code:
str = "<table width=100% bgcolor="
if strValue= "OPEN" then
str = str & "red"
else
str = str & "blue"
end if
str = str & "><tr><td>" & strValue & "</td></tr></table>"
strValue = str
In this example background color is set to red if field value is OPEN and to blue in other case.