Mọi người cho em hỏi lỗi này là sao vậy ??? - TopicsExpress



          

Mọi người cho em hỏi lỗi này là sao vậy ??? protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.FillGirlView(); } } protected void btnSearch_Click(object sender, EventArgs e) { this.FillGirlView(); } void FillGirlView() { SqlConnection connection = new SqlConnection(connectionString); //LOI GOI STORE string sql = sp_SearchLoai; SqlDataAdapter adapter = new SqlDataAdapter(sql, connection); //chỉ dinh kieu cau lenh la store adapter.SelectCommand.CommandType = CommandType.StoredProcedure; //nap gia tri adapter.SelectCommand.Parameters.AddWithValue(@TenLoai, txtSearch.Text); DataTable table = new DataTable(); adapter.Fill(table); GridView1.DataSource = table; GridView1.DataBind(); }
Posted on: Wed, 05 Nov 2014 18:08:59 +0000

Trending Topics




© 2015