Posted on: 4/12/2014 6:02:51 AM | Views : 439

<div class="post-text" itemprop="description"> I want to perform calculation between database cell value and entered textbox value of front end
I try to execute code for bank operations in Asp.net ,c# in it i have database table with balanceamount column
if i click deposit button a textbox visible ,in that i enter the deposit amount after that i click proceed button .i want perform calculation between that textbox and balanceamount column cell value and display the calculated amount in a label
Asp.net code
<asp:Panel ID="Panel1" runat="server" Height="80px" Width="425px" Visible="false"><br /> Amount Deposit <asp:TextBox ID="depositamt" runat="server" Height="21px" Width="90px"></asp:TextBox><br /> ...

Go to the complete details ...