I am currently updating a webpage that has some very simple data displayed in a 2xnumberOfEntries table. The original is hard-coded into html, which, as a programmer, I find to be annoying.
I decided that converting the data to a simple XML schema would be the best idea since I really have no need for the added features of a database.
I then learned XSLT and got a working stylesheet going that converts the XML into an html table and looks fine in the browser.
Q: How do I get this new table back into the original website in place of the original table? I have tried using an iFrame, but that's outdated and unfriendly.
Sub-question: There's really nothing holding me back from using ASP.NET (I am very familiar with it) except the cost of telling my client to make the necessary server changes. Is there a better way of solving this problem?