Can the WebDialogWindow be used to download one or more pdf files from the website? I can't seem to find any examples for this.
Great thanks
I'm pretty sure you're limited to one file per control by the browsers. Joe Stagner has some good videos on doing file uploads at http://www.asp.net/Learn/videos/
The one that's probably the most similar to what you're trying to do is at:
http://www.asp.net/Learn/videos/video-252.aspx
Keep in mind that if you're doing a lot of simultaneous file uploads you'll probably need to increase the size of your maxRequestLength in your web.config file.
-Eric
I have seen examples of single file download, but not multiple files. How would I do multple files? Having multiple controls is fine, but if you can only do one file per control, that isn't really a multple file download.
You can, if you put one or moer asp:FileUpload controls on it. The FileUpload controls will have to do a full page postback.