|
|
|
ASP.Net ขอความช่วยเหลือทีคะ เรื่องส่งค่าข้ามเพจ (Listbox ไปยัง Label อีกหน้า) |
|
|
|
|
|
|
|
ลอง Debug ดูค่า Session ครับ ถ้ามันมีค่าก็สามารถส่งไปได้หมดแหละครับ
|
|
|
|
|
Date :
2013-06-09 06:50:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
protected void Button2_Click(object sender, EventArgs e)
{
string[] str = new string[ltblist.Items.Count];
for (int x = 0; x < this.ltblist.Items.Count; x++)
{
if (ltblist .Items .Count > 0 )
{
str[x] = ltblist.Items[x].Text;
}
else
{
Session["books"]= null;
}
}
Session["books"] = str;
Session["username"] = lbluser.Text;
Session["TName"] = lbltype.Text;
Session["pricetotal"] = txttotal.Text;
if (Session["x"] != null)
{
Response.Redirect("finish.aspx");
}
}
น่าจะประมานนี้
ลองเอาไปประยุกต์
|
|
|
|
|
Date :
2013-06-09 17:43:57 |
By :
a |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัด 26
Session["books"]
|
|
|
|
|
Date :
2013-06-09 17:46:01 |
By :
a |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|