For my asp.net mvc 3 project, I'm considering the best approach for handling data: should I pass all the data via JSON and filter it with JavaScript, or should I filter the data first and then convert it to JSON?
If filtering the data before passing it as JSON is the preferred method, how should I proceed with this process?