views:

586

answers:

1

Hi,

did anyone succed in using AsyncFileUpload in DNN? Although the module is marked as "allow partial render", I get two errore in web page, as alerts:

"Unhandled exception: Access is denied" and "Unhandled exception: the requested file uploading problem".

How can I solve it? the classical input type="file" is not working with ASP.NET AJAX..

Thanks

+2  A: 

I believe classic input type=file does not work within an AJAX UpdatePanel as the file does not get posted to the server. You can get around this by using a PostBackTrigger (http://www.codeproject.com/KB/ajax/simpleajaxupload.aspx).

I'm afraid I'm not sure about why it won't work in DNN.

David Neale
It worked. Simple, non-asynchronous, but it works. Thank you for the link.
lmsasu