I have Problem with transfer all Data in Listbox from Page1 to Page2. Pleas, could me someone help me ?
Page1
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);
Page 2
protected void Page_Load(object sender, EventArgs e)
{
i
if (Request.QueryString["Listitems"] != null)
ListItem1.Items.Add["Listitems"];
Sorry for easy question, but i have only Rookie in ASP.NET :( Thank you
