如题!!!
login.asp页面用户登录验证完成
用session提交权限到loginok.asp
以下是loginok.asp的代码
<%
if not(Session("quanxian")="super" or Session("qunxian")="input") then
response.Redirect("login.asp")
end if
%>
<!--#include file="conn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<%
set rs1=server.createobject("adodb.recordset")
sql1="select * from admin where usertype='"&Session("quanxian")&"' "
rs1.open sql1,conn,1,1
%>
<table width="760" border="0" cellpadding="1" cellspacing="1">
<tr>
<td>管理员<%=rs1("usertype")%></td>
</tr>
</table>
<%
rs1.close
set rs1=nothing
%>
这个是可以显示出来,但我要的是显示用户名显示,数据库字段是name
请问大虾怎么才能在login.asp验证完提交用户名name的数据到login.asp
[此贴子已经被作者于2007-5-18 16:50:52编辑过]