C# 上传文件到流?
我希望用户上传文件并将其保存到流中。
这是到目前为止的代码:
private void Submit_ServerClick(object sender, System.EventArgs e)
{
fn = System.IO.Path.GetFileName(File1.PostedFile.FileName);
}
I want the user to upload a file and save it to a stream.
Here is the code so far:
private void Submit_ServerClick(object sender, System.EventArgs e)
{
fn = System.IO.Path.GetFileName(File1.PostedFile.FileName);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做
我希望它能帮助你......
you could do like this
i hope it will helps you...
FileUpload.PostedFile
返回的对象具有InputStream
属性 可以从中读取上传的文件数据。The object that
FileUpload.PostedFile
returns has anInputStream
property you can read the uploaded file data from.看起来像这个 http://support.microsoft.com/kb/323246
Looks like this one http://support.microsoft.com/kb/323246