Dear all,

how to transfer and recieve the checkboxlist items using server.transfer()


default.aspx
-------------

Banglore
  Hyderabad
  Chennai


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);
}