Example #1
0
        //手机号查询
        protected void bntChaXun_Click(object sender, EventArgs e)
        {
            string phone = this.txtPhone.Text;

            QPS.NEW.BLL.Users user = new QPS.NEW.BLL.Users();
            ds = user.SelectList(phone);
            dgExamProj.DataSource = ds;
            dgExamProj.DataBind();
        }
Example #2
0
 //手机号查询
 protected void bntChaXun_Click(object sender, EventArgs e)
 {
     string phone = this.txtPhone.Text;
     QPS.NEW.BLL.Users user = new QPS.NEW.BLL.Users();
     ds = user.SelectList(phone);
     dgExamProj.DataSource = ds;
     dgExamProj.DataBind();
 }