Guest User

Untitled

a guest
Feb 16th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. using (SqlDataAdapter sda = new SqlDataAdapter(cmd))
  2. {
  3. System.Data.DataTable dt = new System.Data.DataTable();
  4. sda.Fill(dt);
  5. //GridViewBookInfo.DataSource = dt;
  6. GridViewBookInfo.DataBind();
  7. }
  8.  
  9. }
  10. }'
Add Comment
Please, Sign In to add comment