我正在使用.NET awesomium webview
this.webView.LoginRequest += onLoginRequest;
public void onLoginRequest(object sender, LoginRequestEventArgs e)
{
// Proxy Login
e.Username = itemInfo.proxyInfo.proxyAccount;
e.Password = itemInfo.proxyInfo.proxyPwd;
e.Handled = EventHandling.Modal;
e.Cancel = false;
}
和代理登录http页面loadingFrameComplete的HTML是对的。
但是,之后的东西
this.webView.Source = new Uri("https://...");
< =转到https页面
HTML只是
“html body / html / body”
有人帮忙!!