If you can help please do it.

I´m triing to but the value name than my first.html page sent.

My index.html code
Code:
<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Get Name</title>
</head>

<body>

<form action="process.asp" method="POST">
    <p><input type="text" size="20" name="Name"><input
    type="submit" name="B1" value="Enviar"></p>
</form>
</body>
</html>
everiting is ok with this page, the prob on the ASP page

My ASP page code
Code:
<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Processador de Dados</title>
</head>

<body>

<form method="POST">
    <p><script language="VBScript"><!--
Request.Form ("Name")
--></script><input type="text"
    size="20" name="T1"></p>
</form>
</body>
</html>
I´m using Request.Form ("Name") to get the string that was sent from the other page an script erro always saying that "Request object not found", please help me, if you have a simple way to get values from webpages put it here plase.Thanyou.


numibesi