Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. TextBox QntTxt = (TextBox)gvShoppingCart.Rows[0].Cells[2].Controls[0];
  2. or this
  3. TextBox txtqnt = (TextBox)e.Row.FindControl("txtQuantity");
  4. txtqnt.Text = txtqnt.Text;
  5.  
  6. or this
  7. TextBox qnt = (TextBox)gvShoppingCart.FindControl("txtQuantity");
  8. string qntt = qnt.Text;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement