Results 1 to 7 of 7

Thread: I hate ASP !!!!!!!

  1. #1
    Guest

    Angry

    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

  2. #2
    Member
    Join Date
    Jun 2000
    Location
    Manchester, UK
    Posts
    50
    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>

  3. #3
    Guest

    Angry Not working....

    I just appear

    Name:

    on the ASP page.I think i'll quite.

  4. #4
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    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?

  5. #5
    Guest
    Hey! I use Brinkster too.
    What's the address of your site so I can throw rotten apples at it an stuff >:]

  6. #6
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    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?

  7. #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
  •  



Click Here to Expand Forum to Full Width