Hi there, thanks for the speedy response... well I just started out with .Net so I really didnt know about these generic classes in 2.0, thanks for pointing out, I looked at them and the sample code you posted, Following is what I kinda came up with. //Member Level variable string mJurisdictionSelected = null; protected void GetUserSelectedValues() { string dateSelected = this.mDateRestrictor.SelectedItem.Value.ToString(); //this.dateTest.Text = dateSelected; //for (int num = 0; num < mJuristictionCheckBoxList.Items.Count; num++) //string[] jurisdictionName; string jurisdictionName = null; System.Collections.Generic.List<string> list = new System.Collections.Generic.List<string>(); foreach (ListItem item in this.mJuristictionCheckBoxList.Items) { //ArrayList jurisdictionName = new ArrayList(); if (item.Selected) { list.Add(item.Text); //jurisdictionName = item.Text.ToString(); // this.StateTest.Text = jurisdictionName.ToString(); } } this.mDateSelected = dateSelected.ToString(); if (!string.IsNullOrEmpty(jurisdictionName)) //this.mJurisdictionSelected = jurisdictionName.ToString(); this.mJurisdictionSelected = list.ToString(); } Now as you can see, after retrieving the values (from drop down) into string variable dateSelected and from checkboxlist into string variable mJurisdictionSelected, I need to pass them to our company's middle tier folks...so thats why I'm putting them in member level variables....the question regarding the implemenation you showed me is that " should I just create System.Collections.Generic.List as a member level thing, outside of the function and then directly keep the values into the list of type System.Collections.Generic.List. Instead of putting them into string mJurisdictionSelected? I mean the issue is that user could be selecting more than one value from the checkbox list so is this implemenation you told me about would be able to hanle more than one entry selected by user in the checkbox list?????? Or do I need like an array or something??? Please help?? Thanks Sam
----------------------------- If you don't go after what you want, you'll never have it. If you don't ask, the answer is always no. If you don't step forward, you're always in the same place. -Nora Roberts