[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-05 Thread Mike Alsup
Ha, thanks for making me smile. Send a few bucks to your favorite charity! Mike You rock yet again Mike! Where can I donate some money to ya? :respect:

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-05 Thread juliandormon
You rock yet again Mike! Where can I donate some money to ya? :respect: malsup wrote: > > > Sure. Add an "iframe" option to your form options and it will force > the iframe-mode of submitting the form (which uses > multipar/form-data). > > var options = { > iframe: true, > // other o

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-05 Thread Mike Alsup
Sure. Add an "iframe" option to your form options and it will force the iframe-mode of submitting the form (which uses multipar/form-data). var options = { iframe: true, // other options... }; $('#myForm').ajaxForm(options); Mike This is generating a server side error. It seems that

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread juliandormon
OK More info: This is generating a server side error. It seems that if I do not upload a file, the JQuery Form method, posts the form normally encoded instead as multipart/form-data. Can this be avoided? Here is the error my server is throwing: COM Error Number: -2146828227 (0x800A003D) File Nam

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread Mike Alsup
Do you have a sample page? It doesn't sound like you're missing anything. You don't even need the enctype, the form plugin will take care of that for you. What exactly do you mean by "won't submit?" Is there an error? Mike On 6/4/07, juliandormon <[EMAIL PROTECTED]> wrote: Hi All, I have

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread juliandormon
I should specify. I think the form is submitted, but returns nothing - no success anyway? I usually can test this using a the GET method to see if the server is producing an error, but alas not with this multipart method. On Jun 4, 9:20 pm, juliandormon <[EMAIL PROTECTED]> wrote: > Hi All, > I