AsyncFileUpload 在服务器上失败

发布于 2024-10-20 21:06:28 字数 623 浏览 1 评论 0原文

我目前正在 VB.NET Web 应用程序中使用 AsyncFileUpload。

在本地它工作得很好,但是在服务器上它无法上传小文件(<9k)。

我什至无法调试它,因为在 JavaScript 处理程序中我不知道如何获取错误原因。

function uploadError(sender,args) {

            $get("<%=LabelErr.ClientID%>").innerHTML = "Unable to Upload file for the following reason: ", "<span style='color:red;'>" + args.get_errorMessage() + "</span>";

        }

Web 应用程序当然可以写入我在处理 OnUploadedFileError 事件时尝试保存文件的文件夹,然后编写一个测试文件以确保服务器可以写入该目录(这有效)

是否有人有任何想法或可以指出我如何尝试获取错误消息?

编辑:这是一个权限问题。在客户端尝试上传的文件夹中,权限被拒绝。任何人都可以指示应允许哪些用户/角色访问此文件夹以确保可写性

I am currently using the AsyncFileUpload in my VB.NET web app.

Locally it works perfectly, however on the server it fails to upload a small file (<9k).

I can't even seem to debug this as in JavaScript handlers I have no idea as to how to get the error reason.

function uploadError(sender,args) {

            $get("<%=LabelErr.ClientID%>").innerHTML = "Unable to Upload file for the following reason: ", "<span style='color:red;'>" + args.get_errorMessage() + "</span>";

        }

The web app can certainly write to the folder I ma trying to save the file as I handle the OnUploadedFileError event and then write a test file to make sure the server can write to the directory (this works)

Does anyone have any ideas or can point in the direction of how I can try and get the error message?

EDIT: This is a permissions issue. In the folder the client was trying to upload to permission was denied. Can anyone indicate what user/role should be allowed access to this folder to ensure writeability

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文