Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

reuse object value to other oject in asp aspx

i use this code in asp.net Page .aspx With c# when show page variable ( price1 ) take value from other filed i need to make operation into price2 from price1

my code is

  **<div class="divCell" >
  <asp:UpdatePanel ID="upnlLblTotalPrice" runat="server"  UpdateMode="Conditional">
            <ContentTemplate>

       <asp:Label ID="Price1" runat="server" Text="60"   />
          <br />
          <br />
       <asp:Label ID="Price2" runat="server" Text=( Price1*14)/100    />    
          </ContentTemplate>
        </asp:UpdatePanel>
    </div>**

need to get val from price1 and make operation save to price2

value for Price2 not show or work operation

Comments