Guest User

Untitled

a guest
Nov 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. private void GetTABLE()
  2. {
  3. conn.Open();
  4. cmd = new SqlCommand("`GetAllTablesProduct`", conn);
  5. cmd.CommandType = CommandType.StoredProcedure;
  6. SqlDataAdapter da = new SqlDataAdapter(cmd);
  7. DataTable dt = new DataTable();
  8. da.Fill(dt);
  9. ListView1.DataSource = dt;
  10. ListView1.DataBind();
  11. conn.Close();
  12. }
  13.  
  14. ** and This is Store Pro..**
Add Comment
Please, Sign In to add comment