Пример #1
0
 protected void Button_create_Click(object sender, EventArgs e)
 {
     if (DA.Add_user("-1", TextBox_name.Text, TextBox_pass.Text, TextBox_email.Text, false, false, true, TextBox_Des.Text, true) > 0)
     {
         Label_msg.Text    = "تم انشاء مستخدم بصلاحيات خبير بنجاح، اسم الخبير: " + TextBox_name.Text + " وكلمة المرور الخاصة به: " + TextBox_pass.Text;
         TextBox_name.Text = TextBox_pass.Text = TextBox_email.Text = TextBox_Des.Text = "";
         GridView_Alluser.DataBind();
     }
 }
Пример #2
0
    protected void Button_active_Click(object sender, EventArgs e)
    {
        foreach (GridViewRow Row in GridView1.Rows)
        {
            CheckBox c  = (CheckBox)GridView1.Rows[Row.RowIndex].FindControl("CheckBox_active");
            string   id = GridView1.DataKeys[Row.RowIndex].Value.ToString();

            DA.ActiveUser(id, c.Checked);
        }
        GridView1.DataBind();
        GridView_Alluser.DataBind();
    }