0

如何在用户 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";

        }

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

4

1 回答 1

-1

您需要在验证用户的userid同时获取,在验证用户之后,您需要分配 to 的值,userid并且Session["UserID"]在此基础上session["UserID"]您必须进一步工作。

于 2013-10-03T10:03:28.463 回答