-
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
-
Here's how to get the values:
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Processador de Dados</title>
</head>
<body>
Name: <%=Request.Form("Name")%>
</body>
</html>
-
Not working....
I just appear
Name:
on the ASP page.I think i'll quite.
-
Just one quick thing: Your server must host asp...
Here's my code and it works on Brinkster:
(process.asp)
Code:
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Processador de Dados</title>
</head>
<body>
Name: <%=Request("name")%>
</body>
</html>
so how does this work for you?
-
Hey! :) I use Brinkster too. :)
What's the address of your site so I can throw rotten apples at it an stuff >:]
-
www13.brinkster.com/dasilvy/
i have nothing on it, i just use it for experiments and scripts...
i have a download manager script on it but...
no user interface because i have no content...
what's urs?
-