Click here to Skip to main content
15,907,913 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
<asp:Repeater ID="rptIndItemsBind" runat="server">
XML
<ItemTemplate>
                <tr>
                    <td>
                    <asp:Literal ID="ltrlItem" runat="server"  Text='<%# DataBinder.Eval(Container.DataItem,"ProductName") %>'></asp:Literal>
                    </td>
                    <td>
                        <asp:TextBox ID="txtUnit" runat="server" Width="150px" Text='<%# DataBinder.Eval(Container.DataItem,"ProductUnit") %>'></asp:TextBox>
                    </td>
                    <td>
                        <asp:TextBox ID="txtRate" runat="server" Width="150px"  Text='<%# DataBinder.Eval(Container.DataItem,"ProductRate") %>'></asp:TextBox>
                    </td>
                    <td>
                        <asp:TextBox ID="txtQuanity" runat="server" Width="150px" AutoPostBack="true" onblur="Javascript:calcu1()" ></asp:TextBox>
                    </td>                    
                </tr>
            </ItemTemplate>

</asp:Repeater>


In the above code i want multiply txtRate*txtQuantity and display in an textbox as Totalamt .

all should be done in Javascript....
Posted
Comments
Sergey Alexandrovich Kryukov 30-May-11 3:39am    
This is not a question.
--SA
Nithin Sundar 31-May-11 0:39am    
Well what do we have here?

"In the above code i want multiply txtRate*txtQuantity and display in an textbox as Totalamt"

A combo of Gimmecode and urgentz! :D
Sandeep Mewara 30-May-11 5:35am    
Please share your effort made.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900