寻找发送http请求的c#方法
我正在尝试开发一个 Microsoft Excel 插件来将 Excel 工作表数据发送到 Web 应用程序。它将要求插件提示用户名和密码,然后向 Web 应用程序发送登录 http 请求以获取会话。然后它将数据上传到网络应用程序。我应该使用哪些 .net 东西?
I am trying to develop a Microsoft excel plugin to send excel sheet data to a web application. It will require the plugin to prompt username and password and then send login http request to the web application to get a session . Then it will upload data to the web application . What .net things should I use ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发送用户名和密码的 Post 方法示例。要上传文件,只需在 google.com 或 bing.com 中搜索“文件上传 C#”或尝试 C# 的 WebClient.UploadFile,代码项目
Post Method Sample for send username and password. for uploading file just search "File Upload C#" in google.com or bing.com or try C#'s WebClient.UploadFile, Code Project
对于 .NET 中的 HTTP 通信,请尝试 System.Net.WebClient 或 System.Net.HttpWebRequest。
For HTTP communication in .NET, try System.Net.WebClient or System.Net.HttpWebRequest.