if (Session["totalCost"] != null)
{
if (Session["totalCost"] != "confirm")
{
totRevenueLabel.Text = totalRevenueInteger.ToString();
totalRevenueInteger += int.Parse(Session["totalCost"].ToString());
}
但是,当我执行程序时,它说输入字符串的格式不正确
请帮忙!