通过网络服务发送文件
我如何通过我的网站中的网络服务发送文件 与 Gmail 附件相同 在 c# 和 asp.net 中
how can i send a file via web service in my site
same as gmail attachments
in c# and asp.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需创建一个接受两个参数的 Web 方法:字节数组和文件名。
在该方法内部,只需使用文件名打开一个新文件的 FileStream,并将字节数组的内容写入该文件。一个过于简单的示例方法(没有 Web 服务修饰,因为您从未指定您正在使用的 Web 服务框架):
没有更多详细信息,这就是我能得到的最具体的信息。请记住,我们不是代码猴子。我们不会为您编写所有代码。如果您已经有一些代码,请将其发布,我们将尽力帮助您使其正常工作。
Just create a Web Method that accepts two parameters: a byte array and a filename.
Inside the method, simply open a FileStream to a new file with the filename and write the contents of the byte array to the file. An overly simple example method (without Web Service decorations since you never specify what Web Service framework you're using):
Without more details, that's about as specific as I can get. Remember, we're not code monkeys. We're not going to write all of your code for you. If you have some code already, post it and we'll try to help you to get it to work.
如果您尝试发送电子邮件附件,请调查
System.Net.Mail
。 Scott Guthrie 在他的博客上做了很好的介绍。If you're trying to send email attachments, investigate
System.Net.Mail
. Scott Guthrie has a good introduction on his blog.