Add file upload to Orchard module?
Hi i'm currently working with the CyberStride.Contacts module i开发者_运维知识库n Orchard and have been trying to add a file upload to the form, but there seems to be a problem somewhere because the files never upload. Has any one successfully add a fileupload to a module in Orchard, if so could you share how you accomplished this. Thanks.
In order to be able to upload with a form, that form needs to be multipart. This is why it doesn't work without a couple of tricks.
You can find an example of a file upload in this module: http://orchardproject.net/gallery/List/Modules/Orchard.Module.Contrib.ImageField
Note now there is a FileUpload field here: http://orchardproject.net/gallery/List/Modules/Orchard.Module.Contrib.FileField
Once you install this
- Click Content Types on the dashboard.
- Click Edit on the Contact Page type.
- Under fields, click Add, and add File Field. Thats it!!
When you add a contact form a file upload field will automatically show.
精彩评论