Hi,
I have 2 gridviews on same page. First gridview the user clicks add button and the second gridview gets binded.
The second gridview consists of an itemtemplate with texctchanged event
<asp:TemplateField HeaderText="Qty">
<ItemTemplate>
<asp:TextBox ID="TextBoxQty" CssClass="txtQty" runat="server" Text='<%# Eval("Qty") %>' MaxLength="5" Width="45"
OnTextChanged="txtQty_TextChanged" AutoPostBack="true"></asp:TextBox>
<asp:RequiredFieldValidator ID="reqQty" runat="server" ControlToValidate="TextBoxQty" Display="Dynamic" ForeColor="Red" ErrorMessage="RequiredFieldValidator">*</asp:RequiredFieldValidator>
...
Go to the complete details ...