ラベルに整数を表示するにはどうすればよいですか? 私がやっていることは、合計を計算していて、それをラベルに表示しようとしていることです。
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 = ???
}
}
}
または、同じページに合計を表示する他の方法はありますか?