Ask a Question related to ASP, Design and Development.
-
Logan #1
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
-
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... -
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... -
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... -
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... -
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 -
Ray at #2
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
-
Logan Schoonmaker #3
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
-
Ray at #4
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



Reply With Quote

