how to transfer and recieve the checkboxlist items using server.transfer()
default.aspx
-------------
deafult.aspx.cs
---------------
page_load
{
Context.Items.Add("location", CheckBoxList1.SelectedItem.ToString());
Server.Transfer("Default1.aspx",true);
}
Default1.aspx
-----------------
Default1.aspx.cs
-----------------------
page_load
{
how to recieve all selected listitems to this checkboxlist
using context
string location = Context.Items["location"].ToString();
CheckBoxList1.Items.Add(location);
}

Replies
Know the answer? Post it — somebody with the same question will find it here.