Esempio n. 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     user = (UserModel)Session["User"];
     if (Session["User"] == null || Session["User"].ToString() == "" || user.UserType != 1)
     {
         Response.Redirect("../Login.aspx");
     }
     else
     {
         if (!IsPostBack)
         {
             DDLType.DataSource = bll.GetCodeTable();
             DDLType.DataBind();
             CodeGridView.DataSource = bll.GetTypeByID(Convert.ToInt32(DDLType.SelectedValue));
             CodeGridView.DataBind();
         }
     }
 }
Esempio n. 2
0
        protected void Add_Click(object sender, EventArgs e)
        {
            TypeModel type = new TypeModel();

            type.TypeID = Convert.ToInt32(DDLType.SelectedValue);
            type.Name   = txtName.Text.Trim();
            bool flag = bll.InsertType(type);

            if (flag)
            {
                Page.ClientScript.RegisterStartupScript(GetType(), "OnSubmit", "<script>alert('添加成功');</script>");
                CodeGridView.DataSource = bll.GetTypeByID(Convert.ToInt32(DDLType.SelectedValue));
                CodeGridView.DataBind();
            }
            else
            {
                Page.ClientScript.RegisterStartupScript(GetType(), "OnSubmit", "<script>alert('添加失败');</script>");
            }
            txtName.Text = "";
        }
Esempio n. 3
0
 protected void DDLPa_SelectedIndexChanged(object sender, EventArgs e)
 {
     CodeGridView.DataSource = bll.GetTypeByID(Convert.ToInt32(DDLType.SelectedValue));
     CodeGridView.DataBind();
 }