From: martin <ma...@ab...> - 2001-01-28 22:12:28
|
maybe I'm wrong, but wasn't there a problem that only the content within the <body> and </body> was loaded using the LoadPanel? one way to fix this is by replacing the way LoadPanel gets the content. now it uses document.body.innerHTML (ie4) and a behavior-download method (ie5). if we replace this with: document.all.tags('html')[0].innerHTML //ie4 document.getElementsByTagName('html').item(0).innerHTML //ie5, ns6 Loadpanel should get everything between <html> and </html> haven't really test it, just thought this could be a solution. /martin |