|
-
Nov 24th, 2000, 10:47 PM
#1
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
-
Nov 25th, 2000, 09:31 AM
#2
Member
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>
-
Nov 25th, 2000, 12:01 PM
#3
Not working....
I just appear
Name:
on the ASP page.I think i'll quite.
-
Nov 25th, 2000, 11:30 PM
#4
Conquistador
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?
-
Nov 27th, 2000, 12:15 PM
#5
Hey! I use Brinkster too. 
What's the address of your site so I can throw rotten apples at it an stuff >:]
-
Nov 28th, 2000, 04:47 AM
#6
Conquistador
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?
-
Nov 28th, 2000, 04:58 AM
#7
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|