problem posting data from asp form

Ask a Question related to ASP, Design and Development.

  1. #1

    Default problem posting data from asp form

    I am running IIS5, Win2k Server, and .Net Framework 1.1.

    For some reason asp forms will not post data. So I have
    a form with a text box. The form's method is set to post
    and I have a submit button.

    The weird thing is that the page works fine without using
    SSL and/or the FQDN for the server.

    So if I access the page using
    [url]https://server.blah.com/page.asp[/url] it will not work.

    If I access the page using [url]https://server/page.asp[/url] it
    works.

    If I access the page using
    [url]http://server.blah.com/page.asp[/url] it works.

    Any help would be appreciated. Here is the source for
    default.asp:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <html>
    <head>
    <title></title>
    <meta name="GENERATOR"
    content="Microsoft Visual Studio .NET 7.1">
    <meta name="vs_targetSchema"
    content="http://schemas.microsoft.com/intellisense/ie5">
    </head>
    <body>
    <form id="frmMain" name="frmMain"
    action="default.asp" method="post">
    <input type="text" id="txt"
    name="txt" value=<%=Request.Form("txt")%>>
    <input type="submit"
    value="submit">
    </form>
    </body>
    </html>

    Logan Guest

  2. Similar Questions and Discussions

    1. Form Data not posting...
      Hi, Here is the action script from movie. When I click submit the from data loads I can see it with trace. However when it gets posted to CFpage...
    2. ASP.NET not posting form data
      Dear all, We are a library and are trying to get an ASP.NET form page working on our site. the buttons and fields appear, but we are still having...
    3. Posting HTML Form data to MySQL via PHP
      I just need a correct PHP statement that will allow me to instert a record into a MySQL database/table. The "mysql_query(" statment used below does...
    4. List Box in form not posting data
      I have a list box with the following: Row Source Type: Table/Query Row Source: <Saved Query with two columns selected> Column count:2 Multi...
    5. posting data from a web form to other one.
      Hi, I have a frameset and two aspx page. How can post data from one web form to other one. Thanks
  3. #2

    Default Re: problem posting data from asp form

    Are you using NT authentication? If so, there is a known issue with this
    and IE, and I can try to find some links about it.

    Ray at work

    "Logan" <logan.schoonmaker@cisf.af.mil> wrote in message
    news:299c01c394c1$81409c40$7d02280a@phx.gbl...
    > I am running IIS5, Win2k Server, and .Net Framework 1.1.
    >
    > For some reason asp forms will not post data. So I have
    > a form with a text box. The form's method is set to post
    > and I have a submit button.
    >
    > The weird thing is that the page works fine without using
    > SSL and/or the FQDN for the server.
    >
    > So if I access the page using
    > [url]https://server.blah.com/page.asp[/url] it will not work.
    >
    > If I access the page using [url]https://server/page.asp[/url] it
    > works.
    >
    > If I access the page using
    > [url]http://server.blah.com/page.asp[/url] it works.
    >
    > Any help would be appreciated. Here is the source for
    > default.asp:
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    > Transitional//EN">
    > <html>
    > <head>
    > <title></title>
    > <meta name="GENERATOR"
    > content="Microsoft Visual Studio .NET 7.1">
    > <meta name="vs_targetSchema"
    > content="http://schemas.microsoft.com/intellisense/ie5">
    > </head>
    > <body>
    > <form id="frmMain" name="frmMain"
    > action="default.asp" method="post">
    > <input type="text" id="txt"
    > name="txt" value=<%=Request.Form("txt")%>>
    > <input type="submit"
    > value="submit">
    > </form>
    > </body>
    > </html>
    >

    Ray at Guest

  4. #3

    Default Re: problem posting data from asp form


    Some of my pages are using NT Authentication, but others aren't. I
    would appreciate any articles that you could dig up.

    I am aware of a problen with NT Authentication and FQDNs.

    Thank you.


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Logan Schoonmaker Guest

  5. #4

    Default Re: problem posting data from asp form

    Here's the KB article... [url]http://support.microsoft.com/?id=308074[/url]

    Ray at work

    "Logan Schoonmaker" <logan.schoonmaker@cisf.af.mil> wrote in message
    news:ueZejrMlDHA.976@tk2msftngp13.phx.gbl...
    >
    > Some of my pages are using NT Authentication, but others aren't. I
    > would appreciate any articles that you could dig up.
    >
    > I am aware of a problen with NT Authentication and FQDNs.
    >
    > Thank you.
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Ray at 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