Is there a way to filter IList asynchronously?

Ok, so there should be a way to do this ... no? If not, I would like some ideas.

I have two repeaters and an image inside the update panel along with some AJAX drop-down lists with links to buttons on the left. I want to update the data inside the update panel as quickly as possible, since the values ​​are selected from the drop-down menus.

What do you think is the best way to update data? Repeaters are populated with objects, so if I could just filter objects by some properties, I could get the correct data. No new data from the server is required.

Does anyone have any ideas?

+3
source share
3 answers

, , , . .

+1

, , . , , . , , .

- , XML , html xsl. DOM .

- service/page JSON DOM.

http://www.asp.net/AJAX/Documentation/Live/tutorials/ASPNETAJAXWebServicesTutorials.aspx

! 3,

0

If your data is already displayed on the screen, you can access dom and manipulate dom and hide / delete the ones you want. I did this using jquery, but the same should be possible using the ASP.NET Ajax library.

0
source

Source: https://habr.com/ru/post/1696855/


All Articles