Using Ajax to load ASP pages via XML

I’m dynamically build an xml file to construct our tabs (below). I set the hrefmode to ajax but am now getting an incorrect xml syntax message. It works fine using iframes. Things are slow with iframes and was hoping an ajax approach would be faster. At a minimum, having the progress meter that shows up with ajax is helpful. Thanks, Tom

<?xml version="1.0"?> General Programs Management Financials

Here is the demo of “ajax-html” href mode:
dhtmlxSuite/dhtmlxTabbar/samples/01_initialization/05_loading_by_ajax.html
Possibly it’ll help.

Things are slow with iframes and was hoping an ajax approach would be faster.

You may use “iframes-on-demand” mode. In this case only active tab will be loaded at once (the same as in case of “ajax” and “ajax-html”).

dhtmlxTabbar/samples/01_initialization/06_loading_by_iframes.html

I tried ‘iframes-on-demand’ mode but each tab is now blank and there is no error message. Is there something about my xml that is preventing this when this mode is used? If so, what needs to be changed? Thanks, Tom

iframes-on-demand method loads pages into iframe. ajax-html places content as innerHTML. Therefore, if you use iframes-on-demand, the loaded pages should be correct html pages.