enctype="multipart/form-data" performance?

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I've got quite an already complex form to which I need to add a upload photo
facility. I know how to do this but wondered if adding the form tag to
include enctype="multipart/form-data" makes a big performance difference to
the form when a photo isn't been uploaded?

Thanks, Rob.
 
Rob said:
I've got quite an already complex form to which I need to add a upload photo
facility. I know how to do this but wondered if adding the form tag to
include enctype="multipart/form-data" makes a big performance difference to
the form when a photo isn't been uploaded?

It won't make a great deal of difference. Certainly by far the biggest cost
will the time it takes to send the extra characters over the wire but
that'll be small change if occasionally the data contains a photo.

If it is a real concern then onsubmit event of the form you could test the
photo field value to see if it contains a file name then set the enctype
(encoding in JScript on IE) to your prefered type.
 
I've got quite an already complex form to which I need to add a upload
photo facility. I know how to do this but wondered if adding the form tag
to include enctype="multipart/form-data" makes a big performance
difference to the form when a photo isn't been uploaded?

None at all.
 
Back
Top