Intersoft WebCombo Documentation
How-to: Set initial value of multiple selection WebCombo from server side
See Also Send comments on this topic.
Intersoft WebCombo > WebCombo Advanced Features > Multiple Selection How-to Topics > How-to: Set initial value of multiple selection WebCombo from server side

Glossary Item Box

In multiple selection mode, you can set initial value from server side. The initial value can be set both in WebCombo unbound or bound mode.

In this topic, you will learn how to use

To set initial value of multiple selection WebCombo from Server-side

  1. Bind WebCombo to AccessDataSource.
  2. Go to WebCombo.NET Designer - Advance Settings - MultipleSelectionSettings.
  3. Set Enabled property to True.
  4. Use following code to set multiple values:

    C# Copy ImageCopy Code
    protected void Page_Load(object sender, EventArgs e)
    {
       WebCombo1.SetMultipleValues("Anna Trujillo", "ANATR");
    }           
    

See Also