我有两种登录类型,一种是简单用户,另一种是管理员...一个管理员是默认管理员,他创建其他管理员的帐户,他还分配了设计和部门
登录代码
if (users == 1)
{
Session["Login2"] = txt_username.Value;
Session["Login3"] = txt_pass.Value;
Session["UserTypeID"] = users;
Response.Redirect("AdminOp.aspx");
}
else if (users == 2)
{
Session["Login2"] = txt_username.Value;
Session["Login3"] = txt_pass.Value;
Session["UserTypeID"] = users;
Response.Redirect("upload.aspx");
}
}
catch
{
Label8.Text = "Incorrect User Name or Password";
}
}
1 是管理员,2 是用户,当主管登录到他们的帐户时,他会看到菜单,其中有这样的选项,这是 adminOp.aspx
View Documents
</span>
</a>
</li>
<li>
<a href="SuperVisor.aspx">
<span>
Approve Documents
</span>
</a>
</li>
现在当经理登录时,他们如何访问他们的页面并能够看到他们的菜单,因为在上面的选项中只有主管......这就是经理怎么办?