Hi
I use a simple
<%Response.Write Request.Form("MyValue")%>
But that doesn't give me anything..
Here is the pages I use
main.asp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<iframe id="pdfFrame" name="pdfFrame" style="position:absolute; width:200px; height:300px; top:36px; left:333px; z-index:1" frameborder="yes" scrolling="no" src="iframe.aspx">Your Browser doesn't support iFrame please upgrade</iframe>
<div id="Layer1" style="position:absolute; width:200px; height:115px; z-index:2; left: 67px; top: 36px;">
<form action="iframe.asp" method="post" name="form1" target="pdfFrame">
<input name="MyValue" type="text" id="MyValue">
<br>
<br>
<input name="Button" type="button" value="Button">
</form>
</div>
</body>
</html>
iframe.asp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<%Response.Write ("value = " & request.form("MyValue"))%>
</body>
</html>
Regards
M