在 asp.net 中单击按钮浏览到文件
我想在单击按钮时浏览到文件夹并选择该文件夹中的文件。当用户选择特定文件时。我想检索该文件的文件夹路径和大小?
我怎样才能用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用 FileUpload 控件而不是 Button? http://asp.net-tutorials.com/controls/file-upload-控制/
Why not use the FileUpload control instead of a Button? http://asp.net-tutorials.com/controls/file-upload-control/
使用 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.