Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   HTML (http://www.velocityreviews.com/forums/f31-html.html)
-   -   Windows XP SP2: Form submit bug with input type = file using IE? (http://www.velocityreviews.com/forums/t160054-windows-xp-sp2-form-submit-bug-with-input-type-file-using-ie.html)

Tuan Pham-Barnes 11-22-2004 06:21 PM

Windows XP SP2: Form submit bug with input type = file using IE?
 
Runing Windows XP with SP2, create a form with a sumbit button and an
input field with type=file. See the code example below:

<html>
<head>
<title>windows xp sp2 form submit bug</title>
</head>
<form method="get"
action="http://support.microsoft.com/default.aspx">
<body>
<input type="hidden" name="scid" value="fh;en-us;kbhowto">
<input type="file" size="50" name="bug"><br>
<input type="submit" value="submit">
</body>
</form>
</html>

If submit is clicked with nothing in the file field or the file field
text is preceeded with a drive letter (e:anything here), the form
works, but put in any text without a drive letter and the form never
gets submitted by the broswer.

Any ideas on how to fix this?

Thanks,
Tuan

Lenny Linux 11-22-2004 10:52 PM

Re: Windows XP SP2: Form submit bug with input type = file using IE?
 
Try ---------------------

</head>
<body>
<form action="http://support.microsoft.com/default.aspx"
enctype="multipart/form-data" method="post">
<input type="hidden" name="scid" value="fh;en-us;kbhowto">
<input type="file" size="50" name="bug"><br>
<input type="submit" value="submit">
<form
</body>
</html>
------------------------



"Tuan Pham-Barnes" <tuance@gmail.com> wrote in message
news:c9da7141.0411221021.4c94496@posting.google.co m...
> Runing Windows XP with SP2, create a form with a sumbit button and an
> input field with type=file. See the code example below:
>
> <html>
> <head>
> <title>windows xp sp2 form submit bug</title>
> </head>
> <form method="get"
> action="http://support.microsoft.com/default.aspx">
> <body>
> <input type="hidden" name="scid" value="fh;en-us;kbhowto">
> <input type="file" size="50" name="bug"><br>
> <input type="submit" value="submit">
> </body>
> </form>
> </html>
>
> If submit is clicked with nothing in the file field or the file field
> text is preceeded with a drive letter (e:anything here), the form
> works, but put in any text without a drive letter and the form never
> gets submitted by the broswer.
>
> Any ideas on how to fix this?
>
> Thanks,
> Tuan




Lenny Linux 11-23-2004 12:20 AM

Re: Windows XP SP2: Form submit bug with input type = file using IE?
 
Post failed to work.. use --> method="get"



"Lenny Linux" <mysterian_1@hotmail.com> wrote in message
news:L4uod.88082$T02.57490@twister.rdc-kc.rr.com...
> Try ---------------------
>
> </head>
> <body>
> <form action="http://support.microsoft.com/default.aspx"
> enctype="multipart/form-data" method="post">
> <input type="hidden" name="scid" value="fh;en-us;kbhowto">
> <input type="file" size="50" name="bug"><br>
> <input type="submit" value="submit">
> <form
> </body>
> </html>
> ------------------------
>
>
>
> "Tuan Pham-Barnes" <tuance@gmail.com> wrote in message
> news:c9da7141.0411221021.4c94496@posting.google.co m...
> > Runing Windows XP with SP2, create a form with a sumbit button and an
> > input field with type=file. See the code example below:
> >
> > <html>
> > <head>
> > <title>windows xp sp2 form submit bug</title>
> > </head>
> > <form method="get"
> > action="http://support.microsoft.com/default.aspx">
> > <body>
> > <input type="hidden" name="scid" value="fh;en-us;kbhowto">
> > <input type="file" size="50" name="bug"><br>
> > <input type="submit" value="submit">
> > </body>
> > </form>
> > </html>
> >
> > If submit is clicked with nothing in the file field or the file field
> > text is preceeded with a drive letter (e:anything here), the form
> > works, but put in any text without a drive letter and the form never
> > gets submitted by the broswer.
> >
> > Any ideas on how to fix this?
> >
> > Thanks,
> > Tuan

>
>





All times are GMT. The time now is 04:41 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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