M
McKirahan
If I have a Web page invoked via http://myDomain.com/What.htm
that references an ASP page via the <img> tag's "src=" like this:
<html>
<head>
<title>Page.htm</title>
</head>
<body>
<img src="http://myDomain.com/Page.asp"
border="0" width="0" height="0" alt="">
</body>
</html>
I know I can have the ASP add an entry to a log file, etc.
But can I have it affect what is displayed in the browser?
(And I don't mean showing an image.)
The following does not work:
<%@ Language="VBScript" %>
<% Option Explicit
Const cASP = "Page.asp"
Const cURL = "http://www.google.com/"
Response.Redirect(cURL)
%>
Thanks in advance for any information.
that references an ASP page via the <img> tag's "src=" like this:
<html>
<head>
<title>Page.htm</title>
</head>
<body>
<img src="http://myDomain.com/Page.asp"
border="0" width="0" height="0" alt="">
</body>
</html>
I know I can have the ASP add an entry to a log file, etc.
But can I have it affect what is displayed in the browser?
(And I don't mean showing an image.)
The following does not work:
<%@ Language="VBScript" %>
<% Option Explicit
Const cASP = "Page.asp"
Const cURL = "http://www.google.com/"
Response.Redirect(cURL)
%>
Thanks in advance for any information.