asp网站,acess数据库,根据用户级别导向不同页面的操作?代码如何修改?

用户名密码表中加入了level字段,0和1两种级别<%'***Validaterequesttologintothissite.MM_LoginAction=Reques... 用户名密码表中加入了level字段,0和1两种级别
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString <> "" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
MM_valUsername = CStr(Request.Form("user-id"))
If MM_valUsername <> "" Then
Dim MM_fldUserAuthorization
Dim MM_redirectLoginSuccess
Dim MM_redirectLoginFailed
Dim MM_loginSQL
Dim MM_rsUser
Dim MM_rsUser_cmd

MM_fldUserAuthorization = "level"
MM_redirectLoginSuccess = "lurufenliu.asp"
MM_redirectLoginFailed = "erorr.asp"

MM_loginSQL = "SELECT user_id, password"
If MM_fldUserAuthorization <> "" Then MM_loginSQL = MM_loginSQL & "," & MM_fldUserAuthorization
MM_loginSQL = MM_loginSQL & " FROM [user] WHERE user_id = ? AND password = ?"
Set MM_rsUser_cmd = Server.CreateObject ("ADODB.Command")
MM_rsUser_cmd.ActiveConnection = MM_myconn_STRING
MM_rsUser_cmd.CommandText = MM_loginSQL
MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param1", 200, 1, 255, MM_valUsername) ' adVarChar
MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param2", 200, 1, 255, Request.Form("pass")) ' adVarChar
MM_rsUser_cmd.Prepared = true
Set MM_rsUser = MM_rsUser_cmd.Execute

If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
' username and password match - this is a valid user
Session("MM_Username") = MM_valUsername
If (MM_fldUserAuthorization <> "") Then
Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
Else
Session("MM_UserAuthorization") = ""
End If
if CStr(Request.QueryString("accessdenied")) <> "" And false Then
MM_redirectLoginSuccess = Request.QueryString("accessdenied")
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginSuccess)
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginFailed)
End If
%>
这段代码前面是数据集的代码
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows

Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_myconn_STRING
Recordset1_cmd.CommandText = "SELECT * FROM user"
Recordset1_cmd.Prepared = true

Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
展开
 我来答
百度网友1ca2615
2015-08-20 · 超过25用户采纳过TA的回答
知道答主
回答量:75
采纳率:0%
帮助的人:53.2万
展开全部
看你这个代码,成功后会Redirect跳转到 “lurufenliu.asp”,从user表里的level字段里取的值会放到Session("MM_UserAuthorization")中,区分用户权限,如果要跳到不脊旁枝同页面,


Response.Redirect(MM_redirectLoginSuccess)
这一行换成:
if MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value = 值1 then

Response.Redirect(页面地址1)
elseif MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value = 值2 then
Response.Redirect(页樱敏面地址2)
else
Response.Redirect(页面地址3)
end if值1,值2参考user 表里的level字段,自己参启弊考
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式