Asp.Net and jQuery to calculate Running Total of Textbox values and show in Label or TextBox contro

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

sir what for multiplication of two textboxes

RankOoze
Автор

Hi, where i can download the text code ? thank you

sylvainroberge
Автор

Step: 1 
 <script
    <script type="text/javascript">
         $(document).ready(function () {
              //Iterate through each Textbox and add keyup event handler
              () {
                   $(this).keyup(function () {
                        //Initialize total to 0
                        var total = 0;
                        () {
                             // Sum only if the text entered is number and greater than 0
                             if (!isNaN(this.value) && this.value.length != 0) {
                                  total += parseFloat(this.value);
                             }
                        });
                        //Assign the total to label
                        //.toFixed() method will roundoff the final sum to 2 decimal places
                        $('#<%=lblTotalPrice.ClientID %>').html(total.toFixed(2));
                   });
              });
         });
    </script>

Step:2
 <div>
        <fieldset style="width: 315px;">
            <legend>Running Total of all TextBoxes</legend>
            <table border="1px" cellpadding="5" style="border-collapse: collapse;">
                <tr style="text-align: left;">
                    <th>
                        No.</hd>
                        <th>
                            Item
                        </th>
                        <th>
                            Price
                        </th>
                </tr>
                <tr>
                    <td>
                        1
                    </td>
                    <td>
                        Milk:
                    </td>
                    <td>
                        <asp:TextBox ID="txtMilk" CssClass="clsTxtToCalculate" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td>
                        2
                    </td>
                    <td>
                        Bread:
                    </td>
                    <td>
                        <asp:TextBox ID="txtBread" CssClass="clsTxtToCalculate" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td>
                        3
                    </td>
                    <td>
                        Noodles:
                    </td>
                    <td>
                        <asp:TextBox ID="txtNoodles" CssClass="clsTxtToCalculate" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td>
                        4
                    </td>
                    <td>
                        Cheese:
                    </td>
                    <td>
                        <asp:TextBox ID="txtCheese" CssClass="clsTxtToCalculate" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td>
                        &nbsp;
                    </td>
                    <td>
                        <b>Total Price</b>
                    </td>
                    <td>
                        <asp:Label ID="lblTotalPrice" runat="server"></asp:Label>
                    </td>
                </tr>
            </table>
        </fieldset>
    </div>

VetrivelD
Автор

how to get total Running sum of TextBox inside Gridview Item Template Using Jquery

ranjankumaryadav
Автор

How to store that total value into my database

dharmendharg.v