0

可能重复:
asp.net 将值传递到下一页

我正在使用文本框向用户请求数量,并在使用它进行计算后,我想在另一页的标签上显示结果。

这是confirm.aspx.cs的代码

public partial class confirm : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Request.Cookies["user"] != null)
        {
            Label2.Text = Server.HtmlEncode(Request.Cookies["user"]["userName"]);
            Label3.Text = Server.HtmlEncode(Request.Cookies["user"]["email"]);
            Label1.Text = Server.HtmlEncode(Request.Cookies["user"]["items"]);

        }
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        Session.Add("TextBox1Value", TextBox1.Text);
        Response.Redirect("total.aspx");

    }
}

这是另一个页面的代码,total.aspx.cs

public partial class total : System.Web.UI.Page
{
    int totalprice;
    protected void Page_Load(object sender, EventArgs e)
    {
        //Label1.Text = Server.HtmlEncode(Request.Cookies["confirm"]["quantity"]);
        int quantity = Session["TextBox1Value"];

        if (Request.Cookies["user"]["items"] == "Tyres")
        {
            totalprice = 20 * quantity;

            Label2.Text = totalprice.ToString();
        }
    }
}

我在任何地方都可能是错的,或者对我该怎么做有任何建议?

4

2 回答 2

0

您需要将其转换为integer类型以进行计算。

 if(Session["TextBox1Value"]!=null)
 {
   string strQuantity = Session["TextBox1Value"].ToString();
   int quantity=Convert.ToInt32(strQuantity);
   //now you can use quantity to do all your calculations
 }
于 2012-06-05T03:15:43.117 回答
0

将值从一页传递到另一页有不同的方法。

我对同一主题的回答之一将帮助您了解详细信息。

请参考将值传递到下一页

于 2012-06-05T03:18:07.767 回答