private void btn_TestLibFunc_Click(object sender, EventArgs e) { Process.Start("chrome.exe", "http://google.com"); webBrowser1.Url = new Uri(@"http://google.com"); }
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { foreach (HtmlElement he in webBrowser1.Document.All.GetElementsByName("q")) { he.SetAttribute("value", "eeee"); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)