I am using the following code to change the background colour of a row in the List page if the Comment field is empty:
if isnull(rs("Comment")) then
row("rowstyle")="style='background:pink'"
end if
This works fine, however, on a row that isn't affected by this colour change when you hover the mouse over the row the entire rows background changes colour so it is highlighted, this does not happen on a row that has had it's background colour changed due to the code.
Is there a way to keep the conditional format code but still allow the row to change colour when the mouse is over it?
Thanks