将凭据发送到 WebBrowser
我有一个导航到共享点端口的网络浏览器控件。
如何将凭据发送到网络浏览器控件,以便我可以使用自定义凭据导航到该网站?
I have a webbrowser control that navigates to sharepoint port.
How can i send credentials to webbrowser control, so i can navigate to the site with custom credentials?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于服务器使用的身份验证方法。对于表单身份验证,您只需要模拟表单发布。但该网站很可能使用集成 Windows 身份验证,您需要实现 IAuthenticate (例如)或通过 LogonUser 进行模拟。
It depends on the authentication method used by the server. For form authentication you just need to simulate a form post. But most likely the site is using integrated Windows authentication and you need to implement IAuthenticate(Ex) Or impersonate via LogonUser.