Currently, my application is built on classic ASP.
I am interested in incorporating AJAX-style partial page updates to improve the user experience and avoid unnecessary server roundtrips. My goal is to have a list of rows displayed with the option to add more dynamically, save them, and then refresh the table or continue adding new entries.
While I see the value in using AJAX libraries, I believe that for my specific needs, all the additional features they offer might be unnecessary.
I would love to hear recommendations for AJAH libraries that could help me achieve my desired functionality. Additionally, I welcome opinions on whether focusing solely on AJAH, rather than full-blown AJAX, is a viable approach.
(Since my application already has a template rendering function that can convert database data into "rich HTML", I think the most straightforward path forward would be reusing this function to generate replacement HTML to be injected into the page using innerHTML replace through AJAH.)
Thank you.