How to assign the multiple values in MultiCombo

  1. #1

    How to assign the multiple values in MultiCombo

    below the code i m using but its giveing the clientconfig Error in of system.collection
    ArrayList arr = new ArrayList();
    foreach (SelectedListItem lstInsurance in ddlPhysicianN.SelectedItems)
    {
    Session["PhysicianID"] = lstInsurance.Value;
    arr.Add(lstInsurance.Value);
    }
    Session["PhySelected"] = arr;


    ArrayList arr = (ArrayList)Session["PhySelected"];
    if (arr.Count > 0)
    {
    ddlPhysicianN.SetValue(arr);
    }


    1)how to assign the multi values form a muticombo without arralist
    2) how to set the multi check value to multicombo.

    pls reply me as soon as possible...
  2. #2
    pls help me...

Similar Threads

  1. [CLOSED] [1.0] MultiCombo set values
    By Patrick in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jul 06, 2011, 10:09 AM
  2. Replies: 5
    Last Post: Jun 08, 2011, 11:19 AM
  3. [CLOSED] [1.0] Multicombo and values
    By FVNoel in forum 1.x Legacy Premium Help
    Replies: 11
    Last Post: Mar 25, 2011, 5:48 PM
  4. [CLOSED] [1.0] Assign custom values to RadioGroup items
    By SandorD in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 22, 2010, 8:20 AM

Posting Permissions