gpt4 book ai didi

c# - 在标签中显示整数

转载 作者:太空宇宙 更新时间:2023-11-03 17:56:06 25 4
gpt4 key购买 nike

如何在标签中显示整数?我正在做的是计算总数,并尝试将其显示在标签中。

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 = ???
}
}
}

或者有其他方法可以在同一页面上显示总数吗?

最佳答案

使用

Label2.Text = total.ToString();

Label2.Text =  Convert.ToString(total);

由于 Text 采用字符串,因此您必须通过调用 ToString()Convert 将您的 total 整数值转换为字符串.ToString(int).

关于c# - 在标签中显示整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10890962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com