hi
I have two text boxes in grid Txt_BalanceAmt and Txt_PayingAmt when i change the value of one text box the other ones value shoud also chage
Any help?
<asp:BoundField DataField="PendingAmt" HeaderText="Pending Amt" ItemStyle-VerticalAlign="Middle" ItemStyle-Width="80px"/>
<asp:TemplateField HeaderText="Balance Amt" ItemStyle-Width="60px">
<ItemTemplate> <asp:TextBox ID="Txt_BalanceAmt" runat="server" Width="60px" >0</asp:TextBox> </ItemTemplate> </asp:TemplateField>
<asp:TemplateField HeaderText="Paying Amt" ItemStyle-Width="60px">
<ItemTemplate>
<asp:TextBox ID="Txt_PayingAmt" runat="server" Width="60px" Text='<%#Eval("PendingAmt") %>' >0</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
View Complete Post