I have textboxes loaded with data on my ASP.NET MVC page. If the user clicks the Next button I need to load the textboxes with the relevant data. Similarly I have Next, Prev and Last buttons for record navigation. I have no idea on how to implement this. If it is JQuery how I can implement it? How do I implement it in ASP.NET MVC?
I have textboxes loaded with data on my ASP.NET MVC page. If the user
Share
change your model to implement a PagedList and then bind the each item in the result to a textbox, this can be done in Ajax using Jquery too