0

I'm using devexpress multi-file upload as explained here, with almost exactly the same C# and ascx code. My problem is, I need the user to add a description associated with the file being uploaded. I don't know if this is possible.

(Sorry this is probably a "write me the code" question, but a hint is also really appreciated and will help me a lot)

Yalda
  • 680
  • 1
  • 18
  • 39
  • From what i understand, you could create an usercontrol which contains you ASPxUploadControl + a textbox + a submit button, and then get the description + file at the same time.. – LoSTxMiND Sep 17 '13 at 12:08
  • Thanks, but I'm using one control for uploading the files, and setting `FileInputCount="3"` .. My problem is associating a text box to each of these "inner" file input controls (and these inner controls can be added and removed, as shown in devexpress demo)... Seems what I want to do is not possible :( – Yalda Sep 17 '13 at 12:15
  • As far as i know, devexpress controls are quite "close" and if you don't the source code version, you can't edit their controls to add custom fields... – LoSTxMiND Sep 17 '13 at 12:25
  • You still can use mutiple ASPxControl, each one with a description textbox... Or don't use ASPxControl at all =) – LoSTxMiND Sep 17 '13 at 12:25
  • Why don't you contact DevExpress support directly? – Mikhail Sep 17 '13 at 18:49

1 Answers1

1

Check the ASPxUploadControl - How to add additional fields to post information along with the uploaded file sample from the DevExpress forum.

Mikhail
  • 9,186
  • 4
  • 33
  • 49