是否可以在 ASP.NET 中未在 FTP 中设置的网站服务器中上传文件?
我正在 ASP.NET(c#) 创建一个 Web 工具,它可以将图像上传到不同的站点,并且其中一个站点未在 FTP 中设置。是否可以在该站点上传文件(带有凭据)?如果是的话,您能告诉我这个过程吗?
谢谢...
I'm creating a web tool in ASP.NET(c#) which can upload images to different sites and one of the sites is not set-up in FTP. Is it possible to upload files in the that site(with credentials)? If it is, can you please enlighten me on the process?
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以查看创建一个使用 文件上传控件。
You could look at creating an image admin page which uses the FileUpload control.
查看 fileupload 控件。它允许用户准确地做到这一点。
Take a look at the fileupload control. It allows the user to do exactly that.
您可以使用 FileUpload 控件。但它只允许将数据上传到网络服务器。
但如果您需要将文件保存到不同的服务器,您可能需要处理
POST
请求。我认为这篇关于编写服务器端上传代码的文章可能会对您有所帮助。
You can use the FileUpload control. But it will only allow upload data to the web server.
But if you need to save file to a different server, you will probably need handle the
POST
request.I think this article about Writing Server-Side Upload Code may help you.