Click here to Skip to main content
15,885,278 members
Articles / Web Development / HTML
Tip/Trick

Call a C# Method From JavaScript Hosted in a WebBrowser

Rate me:
Please Sign up or sign in to vote.
4.93/5 (22 votes)
6 May 2011CPOL 167.6K   26   32
This demonstrates how you can call a C# method in a Windows Forms application from JavaScript that is hosted in a webpage inside a WebBrowser control on your form.
This sample demonstrates how to call C# from JavaScript. It also shows that parameters can be passed to C# methods.

First, create a Windows Forms application. Then, add a WebBrowser control to your form. Then modify the code for the form so it looks like this:

C#
namespace WindowsFormsApplication6
{
    // This first namespace is required for the ComVisible attribute used on the ScriptManager class.
    using System.Runtime.InteropServices;
    using System.Windows.Forms;

    // This is your form.
    public partial class Form1 : Form
    {
        // This nested class must be ComVisible for the JavaScript to be able to call it.
        [ComVisible(true)]
        public class ScriptManager
        {
            // Variable to store the form of type Form1.
            private Form1 mForm;

            // Constructor.
            public ScriptManager(Form1 form)
            {
                // Save the form so it can be referenced later.
                mForm = form;
            }

            // This method can be called from JavaScript.
            public void MethodToCallFromScript()
            {
                // Call a method on the form.
                mForm.DoSomething();
            }

            // This method can also be called from JavaScript.
            public void AnotherMethod(string message)
            {
                MessageBox.Show(message);
            }
        }

        // This method will be called by the other method (MethodToCallFromScript) that gets called by JavaScript.
        public void DoSomething()
        {
            // Indicate success.
            MessageBox.Show("It worked!");
        }

        // Constructor.
        public Form1()
        {
            // Boilerplate code.
            InitializeComponent();

            // Set the WebBrowser to use an instance of the ScriptManager to handle method calls to C#.
            webBrowser1.ObjectForScripting = new ScriptManager(this);

            // Create the webpage.
            webBrowser1.DocumentText = @"<html>
                <head>
	                <title>Test</title>
                </head>
                <body>
	            <input type=""button"" value=""Go!"" onclick=""window.external.MethodToCallFromScript();"" />
                    <br />
                    <input type=""button"" value=""Go Again!"" onclick=""window.external.AnotherMethod('Hello');"" />
                </body>
                </html>";
        }
    }
}

Note that your application may be part of a namespace other than WindowsFormsApplication6, but the rest of the code should work if you follow the above instructions explicitly. I created this tip/trick because somebody asked me a question and they didn't understand this sample that I sent them to. This tip/trick makes the sample more understandable by fixing the two bugs I spotted, adding the using statements that weren't mentioned, and by heavily commenting the code. Hopefully the rest of you will find this of use as well.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States

  • Managing Your JavaScript Library in ASP.NET (if you work with ASP.net and you don't read that, you are dead to me).
  • Graduated summa cum laude with a BS in Computer Science.
  • Wrote some articles and some tips.
  • DDR ("New high score? What does that mean? Did I break it?"), ping pong, and volleyball enthusiast.
  • Software I have donated to (you should too):

Comments and Discussions

 
GeneralCode is working properly! Thanks for your help aspdotnetdev.... Pin
JohnUSA24-Nov-10 11:49
JohnUSA24-Nov-10 11:49 
GeneralThanks for the heads up, but I'm sure this code is running p... Pin
AspDotNetDev23-Nov-10 18:58
protectorAspDotNetDev23-Nov-10 18:58 
GeneralThis code is not running properly....when it executing webBr... Pin
Palash Biswas23-Nov-10 18:44
Palash Biswas23-Nov-10 18:44 
GeneralRe: geaglem informed me of the problem, and I have implemented t... Pin
AspDotNetDev5-May-11 18:02
protectorAspDotNetDev5-May-11 18:02 
SuggestionAUDissa (Regarding Calling C# From JavaScript on Windows Mobile) Pin
AspDotNetDev15-Feb-12 7:33
protectorAspDotNetDev15-Feb-12 7:33 
GeneralRe: AUDissa (Regarding Calling C# From JavaScript on Windows Mobile) Pin
boogac29-Feb-12 11:12
boogac29-Feb-12 11:12 
GeneralRe: AUDissa (Regarding Calling C# From JavaScript on Windows Mobile) Pin
AspDotNetDev29-Feb-12 15:16
protectorAspDotNetDev29-Feb-12 15:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.