Intersoft WebCombo Documentation
How-to: Use SetAdditionalFilter to filter data from server side
See Also Send comments on this topic.
Intersoft WebCombo > WebCombo Advanced Features > Advanced How-to Topics > How-to: Use SetAdditionalFilter to filter data from server side

Glossary Item Box

Sets the additional filter constraints in order to filter the contents of the WebCombo.

In this topic, you will learn how to use AdditionalFilters method.

To use SetAdditionalFilter to filter data from server side

  1. Bind WebCombo to AccessDataSource.
  2. Use the following code to filter text:

    C# Copy Code
    protected void Page_Load(object sender, EventArgs e)
    {
        WebCombo1.AdditionalFiltersText = "City = 'London'";
    }

  3. Run the project.

See Also