如何在silverlight中创建文件上传按钮
我知道这是一个愚蠢的问题,但我该如何创建一个呢?我需要它做的就是打开一个对话框并填充旁边的文本框
Stupid question I know but how do i create one? All i need it to do is open up a dialog box and populate the text box next to it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,您只是询问将用户选择的文件名放入按钮旁边的 TextBox 控件中。您不是在询问文件的实际上传。如果这是正确的,那么我的答案是您可以这样做:
由于 Silverlight 中的安全限制,您无法显示通过 dlg.File.FullName 可用的完整路径。
If I understand correctly you are asking only about putting a user-selected filename into a TextBox control next to a button. You are NOT asking about the actual uploading of the file. If this is correct, then my answer is that you can do this:
You can't show the full path which would have been available via dlg.File.FullName due to security restrictions in Silverlight.
您需要使用
OpenFileDialog
(silverlight 2.0)。有大量示例或者我是它的忠实粉丝视频演示 示例 2。You need to use the
OpenFileDialog
(silverlight 2.0). There are plenty examples kicking around or I am a big fan of Video Demo's example 2.