Form action not recognized

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Form action not recognized

    Hello

    I am running Windows XP Pro with IIS 5.1 intalled. When I
    submit a page to itself, it works. When I call another
    page in the form action, it doesn't. The original page
    seems like it refreshes.....no error, no change.

    For example, when I run this as "submitpage.asp", and the
    form action page("billybob.asp") does not exist, submit
    page justs refreshes. The same thing happens when I
    create "billybob.asp".

    <%@ Language=VBScript %>
    <HTML>
    <HEAD>
    </HEAD>
    <BODY>
    <FORM action="billybob.asp" method="post">
    <INPUT type="text" id=text1 name=text1>
    <INPUT type="submit" value="Submit" id=submit1
    name=submit1>
    </FORM>
    </BODY>
    </HTML>

    I've even taken examples from IIS Help and pasted them
    directly into my texpad. Still, no dice.
    Any ideas????

    Dave
    Dave Guest

  2. Similar Questions and Discussions

    1. CF submit form action
      hi. I have a site that uses a form for visitors to request information. when the SUBMIT button is clicked, the page returns to the home page... I...
    2. Form Fields - '0's not recognized as a character - Arobat 5
      Forms fields in PDF will not recognize the numeric character '0' (zero) if the numeric sequence starts and/or ends with a zero. My assumption is this...
    3. Form action problem
      Trying to fix a web site I inherited. Problem is with the *help* page. User fills out form and hits send. The browser comes back with Error...
    4. ATAPI CDROM recognized with boot disk but not recognized when installing linux
      I have decided to take the plunge and install linux on one of my old windows machines. I have successfully partitioned the hard drive for exclusive...
    5. form action
      What does "doesn't seem to work" mean? (asp.general removed from x-post list) "rOadhOg" <roadhog@nospam.phreaker.net> wrote in message...
  3. #2

    Default Re: Form action not recognized

    Wonder if it's a cache issue. Have you tried shift/ctrl and refresh on the
    form page?

    Stu

    "Dave" <grumblis@iwaynet.net> wrote in message
    news:065d01c36b67$cab9e5d0$a401280a@phx.gbl...
    > Hello
    >
    > I am running Windows XP Pro with IIS 5.1 intalled. When I
    > submit a page to itself, it works. When I call another
    > page in the form action, it doesn't. The original page
    > seems like it refreshes.....no error, no change.
    >
    > For example, when I run this as "submitpage.asp", and the
    > form action page("billybob.asp") does not exist, submit
    > page justs refreshes. The same thing happens when I
    > create "billybob.asp".
    >
    > <%@ Language=VBScript %>
    > <HTML>
    > <HEAD>
    > </HEAD>
    > <BODY>
    > <FORM action="billybob.asp" method="post">
    > <INPUT type="text" id=text1 name=text1>
    > <INPUT type="submit" value="Submit" id=submit1
    > name=submit1>
    > </FORM>
    > </BODY>
    > </HTML>
    >
    > I've even taken examples from IIS Help and pasted them
    > directly into my texpad. Still, no dice.
    > Any ideas????
    >
    > Dave

    Stuart Palmer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139