Not sure this is what I need.
My first page called Home.asp looks like:
Code:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script language="">
function openFeedback(){
var popurl="Feedback.asp"
winpops=window.open(popurl,"","width=615,height=550,scrollbars")
}
</script>
<body>
<a href="javascript:openFeedback()">Click here to leave feedback about this page</a>
</body>
</html>
My Second page called Feedback.asp looks like this:
Code:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
<input name="URL" type="hidden" id="URL">
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>
When I click the "Click here to leave..." link from the Home.asp page, it opens Feedback.asp and writes the URL of Home.asp (www.mysite.com/Home.asp) inside the hidden field on feedback.asp.
How can I do this?
Bookmarks