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
- Bind WebCombo to AccessDataSource.
- Use the following code to filter text:
C# Copy Code protected void Page_Load(object sender, EventArgs e)
{
WebCombo1.AdditionalFiltersText = "City = 'London'";
}
- Run the project.