I have a bunch of ASP.NET web pages (that have a standard layout) that are product documentation. I want to create some sort of combination page that will pull all of the other page content in and concatenate them into one long page.
IFrames won't work because I don't know the size of each page. I could have the combination page do a ton of #includes, and that would work, but I don't want to have to keep the master update to date (we have a database of page names that can change over time).
Ultimately I'm after something that can get a list of pages, and for each one do the equivalent of a #include for that page into the current page.
I hope that makes sense. Any thoughts?