在 asp.net 中单击按钮浏览到文件

发布于 2024-11-04 12:54:04 字数 145 浏览 4 评论 0原文

我想在单击按钮时浏览到文件夹并选择该文件夹中的文件。当用户选择特定文件时。我想检索该文件的文件夹路径和大小?

我怎样才能用c#在asp.net中做到这一点

顺便说一句,我正在使用vs2008。

请帮助我

谢谢期待

I want to browse to folder on button click and select a file in that folder. When user selects a particular file. I want to retrieve the folder path and size of that file ?

How can i do that in asp.net with c#

BTW i'm using vs2008.

Please help me

Thanks in anticipation

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

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

发布评论

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

评论(2

不疑不惑不回忆 2024-11-11 12:54:04

为什么不使用 FileUpload 控件而不是 Button? http://asp.net-tutorials.com/controls/file-upload-控制/

使用FileUpload控件,它可以接受用户上传的文件,非常简单。使用 FileUpload 控件,只需少量代码即可完成此操作,如下面的示例所示。但是,请注意,接受用户的文件时需要考虑安全问题!

Why not use the FileUpload control instead of a Button? http://asp.net-tutorials.com/controls/file-upload-control/

Using FileUpload control, it will accept file uploads from users and is extremely easy. With the FileUpload control, it can be done with a small amount of lines of code, as you will see in the following example. However, please notice that there are security concerns to to consider when accepting files from users!

森林很绿却致人迷途 2024-11-11 12:54:04

使用 FileUpload 控件让用户浏览到该文件,选择它并上传。不幸的是,在文件上传之前无法检索文件大小(不使用 Silverlight 或其他第三方浏览器组件)。文件上传后,您可以通过 检索文件大小ContentLength 属性。

Use the FileUpload control to let user browse to the file, select it and upload it. Unfortunately, there is no way to retrieve the file size until the file is uploaded (without using Silverlight or other third-party browser components). Once the file is uploaded, you can retrieve file size via the ContentLength property.

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