0

我将 Listbox 中的所有数据从 Page1 传输到 Page2 时遇到问题。请问,有人可以帮我吗?

第1页

protected void Button1_Click(object sender, ImageClickEventArgs e)
{
    int _count = Listbox1.Items.Count;
    if (_count != 0)
    {
        for (int i = 0; i < _count; i++)
        {
            ListItem item = new ListItem();
            item.Text = Listbox1.Items[i].Text;
            item.Value = Listbox1.Items[i].Value;

            Response.Redirect("Page2.aspx?Listitems="+ item.Value);

第2页

 protected void Page_Load(object sender, EventArgs e)
{
    i

    if (Request.QueryString["Listitems"] != null)
        ListItem1.Items.Add["Listitems"];

很抱歉这个简单的问题,但我在 ASP.NET 中只有 Rookie :( 谢谢

4

1 回答 1

0

使用会话变量在“解决方案 2”中有一个如何使用会话变量传递列表的示例。

于 2013-01-25T11:53:42.957 回答