J
jp2code
Using JavaScript, I can open a document in a new window like so:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script type="text/javascript" language="JavaScript">
window.open("index.htm", "new",
"width=200,height=100,toolbar=no,resizable=no,menubar=no,location=no,status=no,directories=no");
</script>
</head>
<body></body>
</html>
How would I do this using Classic ASP?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script type="text/javascript" language="JavaScript">
window.open("index.htm", "new",
"width=200,height=100,toolbar=no,resizable=no,menubar=no,location=no,status=no,directories=no");
</script>
</head>
<body></body>
</html>
How would I do this using Classic ASP?