Hi there.
I am using asp.net web forms.
How can I filter a repeater based on the checked values of multiple checkboxes using jQuery?
The result will be if I chose any categories and cities it will dynamically display all the galleries under those categories/cities.

I used repeater for categories and cites.


And repeater for galleries.


Sachin SinghPosted Nov 29, 2021, 7:23 AM
Vikas PanwarPosted Nov 29, 2021, 6:03 AM
First get checkbox Select value on hidden field Control and Also define a link buton click even in javascript like as
Then on code behind get Hidden field value on link button click event and bind Your Repeter control
protected void LinkButton1_Click(object sender, EventArgs e)
{
string CheckboxValue = HdCheckboxValue.Value;
//Based on this Checkboxvalue bind Repeter control
}