Reputation: 111
I'm writing an asp.net website that has a search. Depending on the filter that they apply, the results will be different (Look and Data displayed). Are partial views the best way to go about this? I don't want the page to have to refresh every time they apply a new filter.
Upvotes: 0
Views: 971
Reputation: 14679
Yes, partial view is best approach for this, use ajax call to load partial view.
Please refer for more details : https://stackoverflow.com/a/38968860/6606630
Upvotes: 1
Reputation: 145
Perhaps you are reffering to Ajax tech?
Check this link: http://www.asp.net/ajax
Upvotes: 1