htmldocument document = webbrowser1.document; string scriptname = "gettext"; object[] args = new string[0]; object obj = document.invokescript(scriptname, args); string script = obj.tostring();

0

HtmlDocument document = webBrowser1.Document; string scriptName = "GetText"; object[] args = new string[0]; object obj = document.InvokeScript(scriptName, args); string script = obj.ToString();

By Beginner Floyd Gibson at Oct 11 2020


Related code examples


Code examples by languages