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
- Bind WebCombo to AccessDataSource.
- Go to WebCombo.NET Designer - Advance Settings - MultipleSelectionSettings.
- Set Enabled property to True.
- Use following code to set multiple values:
C# Copy Code protected void Page_Load(object sender, EventArgs e) { WebCombo1.SetMultipleValues("Anna Trujillo", "ANATR"); }