在 asp.net 中使用会话

本文关键字:会话 asp net | 更新日期: 2023-09-27 18:33:38

如何在用户ID中使用会话...即我有一个用户表,其中有用户ID列,也有离开表,在这个表中还有一个用户ID来显示哪个用户ID申请休假当员工申请休假时,他/她的用户ID也会保存在休假表中...在用户表中有员工的所有信息

  protected void Btn_Login_Click(object sender, EventArgs e)
    {
        try
        {
            int users = aa.SignIn(txt_username.Value, txt_pass.Value);

           if (users == 1)
            {
                //Session["UserID"] = aa.SignIn(txt_username.Value, txt_pass.Value);
                Session["UserID"] = txt_username.Value;
                Session["UserTypeID"] = users;
                Response.Redirect("AdminOp.aspx");
            }
            else if (users == 2)
            {
                //Session["UserID"] = aa.SignIn(txt_username.Value, txt_pass.Value);

                Session["UserID"] = txt_username.Value;
                Session["UserTypeID"] = users;
                Response.Redirect("leave.aspx");
            }

        }
        catch
        {
            Label8.Text= "Incorrect User Name or Password";
        }

在此代码中,我在会话中保存了一个用户名

在 asp.net 中使用会话

您需要在

验证用户时获取userid,并且在验证用户后,您需要将 userid 的值分配给Session["UserID"],并且根据session["UserID"]您必须进一步工作。