我使用文本框,要求從用戶數量和用它做計算之後,我想上顯示結果另一頁上的標籤。
這裏是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();
}
}
}
任何地方,我可能是錯的或任何我該如何做的建議?
'.Text'屬性已經編碼。你不應該重複編碼。 – SLaks