Good afternoon, I'm implementing an infinite list in asp net mvc and I have some doubts about what is the best way to do this. I implemented using partial view, making a request via ajax and return this partial view and give an append to my html and it works fine. But I also saw that it is possible to do this by returning a JSON with the data and putting it via javascript and displaying it to the user, what would be the best way? JSON or partial view?