I am created a web page with a cms. It includes pansets but I don't think this should cause a problem..? I have a redirector based on IP and a simple if else statement. The else statement has a document.write, but when it is run it writes the text to a new web pages and doesnot display anything else.
This is the correct way to do a document.write isn't it?if(internal == "Y") {
var redirect = new Redirect("http://intranet/awebpage");
redirect.go();
}
else
{
document.write('Hello');
}
I can't post all the code (cos its a lot) but is the document.write structed ok?
Cheers







Bookmarks