测量上传时间?

发布于 2024-08-24 01:21:58 字数 66 浏览 7 评论 0原文

我有一个非常简单的页面,用户可以用它上传文件。仅使用服务器端 C#(例如隐藏代码),如何测量用户等待文件上传的时间量?

I have a very simple page with which a user uploads a file. Using only server-side C# (e.g. the code-behind), how can I measure the amount of time the user had to wait for the file to upload?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

两相知 2024-08-31 01:21:58

这是非常困难的(嗯,这是在 IIS6 中)。您需要编写一个 HttpModule 来拦截上传并处理它,然后使用传入文件的总大小(位于请求的标头中),计算每秒获得的字节数,然后您可以计算还剩多少时间。

但是,仅使用代码隐藏文件无法执行任何操作 - 当请求到达 asp.net 处理程序时,该文件已经上传并可用。

This is very difficult (well, it was in IIS6). You need to write an HttpModule to intercept the upload and handle it, then using the total size of the file coming in (it's in the header of the request), calculate how many bytes per second you're getting, and then you can calculate how much time is left.

However, you cannot do any of this with just the code-behind file -- the file is already uploaded and available by the time the request gets to the asp.net handler.

只是一片海 2024-08-31 01:21:58

我必须找到这样的东西,我正在使用这个

I had to find something like this and I'm using this.

神也荒唐 2024-08-31 01:21:58

如果您不关心完全准确性,则可以向服务器发送快速调用以指示上传正在开始,然后立即发出上传请求。然后,服务器可以测量第一次调用和第二次调用完成之间的时间。

If you're not concerned with complete accuracy, you can send a quick call to the server to indicate that an upload is starting, followed immediately by the upload request. The server can then measure the time between the first call and the completion of the second call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文