现在才上网,首先多谢各位帮助!
二楼仁兄,我试过用 == 来比较,运行后是语法错误,这部分的代码在下面,如果是管理员的则显示表中指定字段内容
<%
if Session("userRole")="管理员" then
sql= "select * from tb_admin"
set rs= conn.execute(sql)
%>
<table width="100%">
<% do while not rs.eof %>
<tr>
<td height="27"><div align="center"><%=rs("userID")%></div></td>
<td><div align="center"><%=rs("userPwd")%></div></td>
<td><div align="center"><%=rs("userRole")%></div></td>
</tr>
<%
rs.movenext
loop
rs.close
end if
%>
</table>
但运行后是这样:
Script error detected at line 109.
Source line: if Session.("userRole")="管理员" then
Description: 缺少标识符
Session后怎么多出个点,我想是不是出错在这里,晕了。库连的是SQLServer2000,打了SP4