Skip to content
Loading
bootstrap popup modal and form  
  •   
  •   
  •   
  •   
  •   
  •   
  • Give runat="server" attribute properly and from code behind assign the values to that label such as:
    1. DataTable dt = new DataTable();  
    2. dt=GetDetails();//Your implementation of getting data frrom database  
    3. id1.Text=dt.Rows[0]["package"].ToString();  
    4. id2.Text=dt.Rows[0]["Subpackage"].ToString();  
    5. //create your logic behind calculating the price  
    6. id3.Text=price.toString();  
    Hope you get it.
    Thanks.