|
Thank u Sir,
for your article
I tried above code
First Item is getting replaced with Second item , i want that it should be added without replacing
|
|
|
at:
25/12/2006 23:32:21
UTC |
|
|
|
|
Finaly i have solved this with codebehind for First Page as followsstring str1 = ""; string[] items; protected void Page_Load(object sender, EventArgs e) { if (Session["items"] == null) { Session["items"] = Request["txtStartDate"] + Request["txtEndDate"]; str1 = Request["txtStartDate"] + Request["txtEndDate"]; } else { Session["items"]+=Session["items"] + "," + Request["txtStartDate"] + Request["txtEndDate"]; str1 =Convert.ToString(Session["items"]); } items = str1.Split(','); foreach (string item in items) { ListBox1.Items.Add(item); }
|
|
|
at:
25/12/2006 23:51:28
UTC |
|
|
|
|
Good work Swati Jain. I was a bit away so could not get your first Message.
|
|
|
at:
26/12/2006 12:20:05
UTC |
|
|
|
|
hi
|
|
|
at:
27/12/2007 01:07:39
UTC |
|
|