麻烦帮忙看一下这代码
id=Request.Querystring("id")session("id")=id
sql="select * from gczb where id="&id
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if rs.eof then
Response.Write("没有相关内容")
Response.end
end if
sql2="select * from gztb where JaAdmin='"&session("JaAdmin")&"' and UserID="&id
set rs2=server.createobject("adodb.recordset")
rs2.open sql2,conn1,1,1
session("shenc")=rs2("shenc")
session("JaAdmin1")=rs2("JaAdmin")
session("UserID")=rs2("UserID")
<% if session("shenc")=1 and session("JaAdmin")=session("JaAdmin1") and session("id")=session("UserID") then %>
<%=rs("gcadd")%>
<%else%>
<% Response.Write "装饰公司高级会员投标审查后才可以看" %>
<%end if%>
说明:
id为所看页面的id号
JaAdmin和JaAdmin1用户名
<%Response.Write session("JaAdmin1")%>
<%Response.Write session("JaAdmin")%>
<%Response.Write session("id")%>
<%Response.Write session("UserID")%>
都能输出相对应的值
<% if session("shenc")=1 and session("JaAdmin")=session("JaAdmin1") and session("id")=session("UserID") then %>这代码中去掉了and session("id")=session("UserID") 可以显示<%=rs("gcadd")%>数据 加上后只能显示"装饰公司高级会员投标审查后才可以看"