Example #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!this.IsPostBack)
        {
            if (this.Session["hyuid"].ToString() == "")
                this.Response.Redirect("../../login.aspx");

            string uid = "";
            if (this.Session["hyuid"].ToString() != null)
                uid = this.Session["hyuid"].ToString();

            HyoaClass.Hyoa_post Hyoa_post = new HyoaClass.Hyoa_post();
            DataTable dt = Hyoa_post.Getpostbyuseridandtype(uid, "科研管理信息系统");

            if (dt.Rows.Count > 0)
            {
                this.username.Value = dt.Rows[0]["userid"].ToString();
                //this.Response.Write("<script>alert('" + Hyoa_post.Decrypt(dt.Rows[0]["pwd"].ToString()) + "');</script>");
                this.passwordhidden.Value = Hyoa_post.Decrypt(dt.Rows[0]["pwd"].ToString()).ToString();
            }
            //if (user.mailpwd != "" && user.mailpwd !=null)
            //{
            //    this.dec_password.Value = JpUsers.Decrypt(user.mailpwd);
            //}

        }
    }
Example #2
0
    private void DataPlay()
    {
        //是否启用
        this.ddltypename.Items.Insert(0, "宁波局OA");
        //this.ddltypename.Items.Insert(1, "科研管理信息系统");
        this.ddltypename.Items.Insert(1, "大榭局OA");
        this.ddltypename.Items.Insert(2, "宁波局人事测评");
        //模块编号

        if (this.Request.QueryString["op"] != null)
        {
            this.txtop.Value = this.Request.QueryString["op"].ToString();           //新增还是修改
            this.btn_submit.Visible = true; //保存

            //旧文档
            if (this.Request.QueryString["op"] == "modify")
            {
                if (this.Request.QueryString["id"] != null)
                {
                    //根据id得到信息
                    this.txtdocid.Value = this.Request.QueryString["id"].ToString();
                    HyoaClass.Hyoa_post Hyoa_post = new HyoaClass.Hyoa_post();
                    DataTable dt = Hyoa_post.Getpost(this.txtdocid.Value);
                    if (dt.Rows.Count > 0)
                    {
                        this.ddltypename.SelectedValue = dt.Rows[0]["hy_type"].ToString();
                        this.txtuserid.Value = dt.Rows[0]["userid"].ToString();
                        this.txtpwd.Value = Hyoa_post.Decrypt(dt.Rows[0]["pwd"].ToString());
                    }
                    dt.Clear();
                }
            }
        }
    }