Language Basics ASP.Net

<%@ Page Language="C#" Debug="true" %>

    void Page_Load()
    {
       if (Page.IsPostBack)
       {
         lblTax.Text = "Your tax bill would be $";
         lblTax.Text += Convert.ToString(Convert.ToInt32(txtEarnings.Text)*Convert.ToInt32(txtTaxRate.Text)/100);
         lblTax.Visible=true;
       }
    }



    Calculate Tax Bill


    

Tax rates 
    


    
        Please enter your earnings: $ 
        
        
        Please enter your tax rate, for example enter '7' for 7%