Tagged Questions

8
votes
2answers
201 views

Why not always use enctype=”multipart/form-data”?

When building HTML forms why do we not always use enctype="multipart/form-data"?
3
votes
4answers
247 views

html form enctype

In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to be set. This much I know. But why? What exactly does it change? How does it differ from …
1
vote
1answer
184 views

cffile upload location

In CF7, can anyone tell me if there's a way around the file being automatically uploaded to the /tmp/ folder before being moved to a destination location I provide? I'm trying to use cffile in a …
1
vote
3answers
197 views

Coldfusion linux enctype

I'm posting a form in Coldfusion on Linux. Form has a file field. CF requires the enctype="multipart/form-data" attribute on the form tag. If I have this, I get a "JRun Servlet Error - 500 No such …
0
votes
1answer
152 views

HTML forms: issues combining charset with enctype in Firefox

I have a Web site with a message board. The board lets people post messages and include attachments. I had a problem where my site was hiccuping every time someone wrote a post with non-Unicode …
0
votes
2answers
131 views

How to set session variable

I want to set the current form object as session parameter before submitting the form.Is it possible? <html> <head> Title </head> <body> <FORM method="test" name="test" …