DotNetNuke 中的 AsyncFileUpload 错误
有人在 DotNetNuke 中成功使用 AsyncFileUpload
吗?尽管该模块被标记为“允许部分渲染”,但我在网页中收到两个错误,作为警报:
未处理的异常:访问被拒绝
并且
未处理的异常:请求的文件上传问题
如何解决?经典输入 type="file" 不适用于 ASP.NET AJAX。
Has anyone succeeded in using AsyncFileUpload
in DotNetNuke? Although the module is marked as "allow partial render", I get two errors 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信经典的 input type=file 在 AJAX UpdatePanel 中不起作用,因为文件不会发布到服务器。您可以使用 PostBackTrigger (http://www.codeproject.com/ KB/ajax/simpleajaxupload.aspx)。
恐怕我不确定为什么它在 DNN 中不起作用。
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.