mattscotney
Programmer
Hi all I am having a few problems converting the following javascript function to ASP (written in VBscript):
function show()
{
z = window.open();
z.document.write('<pre>' + repl('<html>\n' + document.documentElement.innerHTML + '\n</html>'));
z.document.close();
}
I have the repl() function under control, it is only the above portiion which is providing problems.
Any assistance would be greatly appreciated.
Thanks in advance,
Matt Scotney
function show()
{
z = window.open();
z.document.write('<pre>' + repl('<html>\n' + document.documentElement.innerHTML + '\n</html>'));
z.document.close();
}
I have the repl() function under control, it is only the above portiion which is providing problems.
Any assistance would be greatly appreciated.
Thanks in advance,
Matt Scotney