如何在標籤中顯示整數?我正在做的是我正在計算總數,我試圖在標籤中顯示它。在標籤中顯示整數
public partial class total : System.Web.UI.Page
{
int total;
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = Server.HtmlEncode(Request.Cookies["confirm"]["quantity"]);
int quantity = (int)Session["TextBox1Value"];
if (Request.Cookies["user"]["items"] == "Tyres")
{
total = 20 * quantity;
Label2.Text = ???
}
}
}
或者是否有任何其他方式顯示在同一頁上的總數?
調用toString。 – brianestey