folks, trying to pass variable from test1.html to test1.asp.
simplest code possible, even works on our ISP host, but not my web server. please help??
code for test1.html, which calls test1.asp:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>A.html which calls B.asp</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" action="B.asp" method="post">
<input type="box" name="input1">
<input type="submit" value="submit">
</form>
</body>
</html>
================
calls the following - B.asp:
================
<%@ LANGUAGE=VBScript %>
<%
'Turn On Error Handling
On Error Resume Next
%>
<html>
<head>
<title>B.asp</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%
var1=request.form("input1")
response.write(var1)
%>
</body>
</html>
======================
works on our ISP's server yet not on my own webserver.
goes to the B.asp but is just white page. any ideas??
server configuration??
thank you!!