我在页面加载时生成了一个充满数据的表格。当用户单击一个 ID 时,该行需要突出显示。现在,我已经做到了,当用户单击 ID 时,布尔值设置为 true,然后发生其他一些事情。我设置了它,以便当布尔值为真时,该行将突出显示。然而,这并没有发生。你能帮我弄清楚为什么吗?
<%
If RS.RecordCount > 0 then
Do While Not RS.EOF
if RS("ROLL_ID") = IntRollID then
boolDetailTable = true
end if
%>
<TR <% if boolDetailTable = true then %> bgcolor "#CCFF00" <%end if%>>
<a target=_top href="<% = getInfo(RS("ROLL_ID"))%>" onMouseOver="window.status='Click to get info';return true;" onMouseOut="window.status='';return true;">
<TD style="width: 9%; cursor: hand; border-right: none; align: center; vertical-align: center;"
title="Click to get info">
<font color="navy"><%= RS("ROLL_ID")%></font>
</TH>
</a>
<TD style="width=25%" style="font-size: 12pt" align="center"> <% = RS("ROLL_FINISH_DESC") %></TD>
<TD style="width=20%" style="font-size: 12pt" align="center"> <% = RS("ROLL_DIAMETER") %></TD>
<TD style="width=20%" style="font-size: 12pt" align="center"> <% = RS("ROLL_CROWN") %></TD>
<TD style="width=10%" style="font-size: 12pt" align="center"> <% = RS("ROLL_LOCKOUT_YN") %></TD>
</TR>
<%
RS.MoveNext()
Loop
end if
%>