I have some forms that post to a CGI script. I set them up and they work perfectly on all browsers. Then I leave them alone.

A few days later, after designers have updated the page, the forms no longer work and a mysterious

enctype="text/plain"

has been added to the form tag.

I didn't put it there, and the designers didn't put it there ( intentionally ). There is no source control, and I don't use Dreamweaver. I can't explain where it came from.

Does Dreamweaver add this attribute automatically?

link|improve this question

feedback

2 Answers

My copy of Dreamweaver CS3 doesn't, but I wouldn't be surprised if it were possible, depending on the settings. Dreamweaver has an option for setting the form's enctype attribute in design mode. Perhaps it was changed by accident?

link|improve this answer
Any idea where that option to set a form's enctype in Design mode is set? – jeph perro Jul 13 '10 at 20:18
Yeah, it's in the properties panel, typically found at the bottom of the window in design view. – Brad Jul 13 '10 at 21:08
Dreamweaver did not let me down. Dreamweaver only gives 2 choices - application/x-www-form-urlencoded and multipart/form-data. – jeph perro Jul 14 '10 at 22:33
feedback
up vote 0 down vote accepted

The answer to my question is "no".

It turns out that it was not Dreamweaver after all. Someone had created a template where enctype="text/plain" and was reusing it.

Dreamweaver CS3 only gives these 2 choices for enctype:

application/x-www-form-urlencoded

multipart/form-data.

Human error not software error ( this time ).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.