Wrox Home  
Search P2P Archive for: Go

  Return to Index  

proasp_howto thread: form.request POST method and anonymous access problem


Message #1 by "Ali" <itm@a...> on Tue, 26 Feb 2002 15:15:11
It should work. Whether or not anonymous access is enabled or not is
irrelevant...

--- page1.asp ---

<html>
    <head></head>
    <body>
        <form method="post">
            <input type="text" name="txt1">
            <input type="submit">
        </form>

        <p>You entered <%=Request.Form("txt1")%></p>
    </body>
</html>

--- page1.asp ---

Can you try the above page (which posts to itself), and tell me what you
see?

Cheers
Ken

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Malathi" <senthil.malathi@a...>
Subject: [proasp_howto] Re: form.request POST method and anonymous access
problem


: The same pblm occurs when both Page1.asp & Page2.asp are set to Anonymous
: access. What should be done to have Request.Form working on an Anonymous
: page?
:
: TIA.
:
: Regards,
: S.Malathi
:
: > Ken
: >   Thanks for the feedback. Sorry part of the message was missing (the
ex-
: > posting):
: > Here it is:
: >
: > Gurus...
: > Page1.asp (NT authentication) is submitting data into
: > Page2.asp (anonymous access).
: >
: > How can I retrieve values from FORM located in Page1.asp within
: Page2.asp?
: >
: > (Because anon access for Page2.asp, Request.Form("txt_box") and others
: are
: > blank!!!)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


  Return to Index