vote up 4 vote down star
1

I've tried this:

string newScript = textBox1.Text;
HtmlElement head = browserCtrl.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = browserCtrl.Document.CreateElement("script");
lblStatus.Text = scriptEl.GetType().ToString();
scriptEl.SetAttribute("type", "text/javascript");
head.AppendChild(scriptEl);
scriptEl.InnerHtml = "function sayHello() { alert('hello') }";

scriptEl.InnerHtml and scriptEl.InnerText both give errors:

System.NotSupportedException: Property is not supported on this type of HtmlElement.
   at System.Windows.Forms.HtmlElement.set_InnerHtml(String value)
   at SForceApp.Form1.button1_Click(Object sender, EventArgs e) in d:\jsight\installs\SForceApp\SForceApp\Form1.cs:line 31
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Is there an easy way to inject a script into the dom?

flag

71% accept rate

7 Answers

vote up 6 vote down check

For some reason Richard's solution didn't work on my end (insertAdjacentText failed with an exception). This however seems to work:

HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = webBrowser1.Document.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
element.text = "function sayHello() { alert('hello') }";
head.AppendChild(scriptEl);
webBrowser1.Document.InvokeScript("sayHello");
link|flag
Cool, I think the IHTMLScriptElement usage makes the code intent more obvious in any case. I do wonder why you got an exception, but c'est la vie with COM interop sometimes. – richdiet Sep 30 '08 at 20:02
vote up -3 vote down

What you want to do is use Page.RegisterStartupScript(key, script) :

See here for more details: http://msdn.microsoft.com/en-us/library/aa478975.aspx

What you basically do is build your javascript string, pass it to that method and give it a unique id( in case you try to register it twice on a page.)

EDIT: This is what you call trigger happy. Feel free to down it. :)

link|flag
ASP.Net doesn't have much to do with scripting the WebBrowser control in a winforms app. – jsight Sep 30 '08 at 16:08
I will leave this up here for the punishment i deserve ;) – mattlant Sep 30 '08 at 16:10
I probably would have under-read the same way and given the same incorrect answer – Grank Sep 30 '08 at 16:14
at least i am not alone ;) – mattlant Sep 30 '08 at 16:23
I interpreted it the same way... – Turnkey Sep 30 '08 at 16:43
vote up 0 vote down

You can always use a "DocumentStream" or "DocumentText" property. For working with HTML documents I recommend a HTML Agility Pack.

link|flag
Nice tip... I'm sure that lib will come in handy at some point. – jsight Sep 30 '08 at 19:40
vote up -1 vote down

You can use the HTMLGenericControl to do this, e.g.

HtmlGenericControl Include = new HtmlGenericControl("script");
Include.Attributes.Add("type", "text/javascript");
Include.InnerHtml = "alert('JavaScript in Page Header');";
this.Page.Header.Controls.Add(Include);
link|flag
vote up 2 vote down

The managed wrapper for the HTML document doesn't completely implement the functionality you need, so you need to dip into the MSHTML API to accomplish what you want:

1) Add a reference to MSHTML, which will probalby be called "Microsoft HTML Object Library" under COM references.

2) Add 'using mshtml;' to your namespaces.

3) Get a reference to your script element's IHTMLElement:

IHTMLElement iScriptEl = (IHTMLElement)scriptEl.DomElement;

4) Call the insertAdjacentText method, with the first parameter value of "afterBegin". All the possible values are listed here:

iScriptEl.insertAdjacentText("afterBegin", "function sayHello() { alert('hello') }");

5) Now you'll be able to see the code in the scriptEl.InnerText property.

Hth, Richard

link|flag
Nice... this together with the tips provided by korchev works perfectly. I wish I could set two accepted solutions on this one. :) – jsight Sep 30 '08 at 19:40
vote up 0 vote down

Hi,

I need to inject script, but I don't have half of the methods discussed in .Net 3.5 WPF WebBrowser control.

For example, I do not have: - browserCtrl.Document.GetElementsByTagName - head.AppendChild - se.DomElement;

I need to do all in WPF. So far I tried

        mshtml.HTMLDocument doc2 = webBrowser.Document as mshtml.HTMLDocument;
        mshtml.IHTMLHeadElement head = doc2.getElementsByTagName("head") as mshtml.IHTMLHeadElement;
        mshtml.IHTMLElement se = doc2.createElement("script") as mshtml.IHTMLElement;
        mshtml.IHTMLScriptElement element = (mshtml.IHTMLScriptElement)se.document;
        element.text = "alert('here we are')";
        // head.AppendChild( se ) <-- No such method

with no luck.

Do you have the similar example for WPF WebBrowser control?

link|flag
vote up 0 vote down

Hi all,

The examples above for injecting scripts works for System.Windows.Forms.WebBrowser control, but I need to do it for WPF Browser control System.Windows.Controls.WebBrowser which has no property of webBrowser.Document.GetElementsByTagName and so on.

Do you have the similar example specifically for WPF?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.