I am trying to create a browser plugin that should run on Firefox, Internet Explorer and Chrome.
So far I got to know few things which will help me develop a browser plugin.
1. Create DLL in C or C++(?) language.
2. Create a C# ASP.NET WebForms project in Visual Studio 2012.
3. Use the DLL developed in C language in this new project by writing the following lines of code in a class.
class Program
{
[DllImport(@"c:\BrowserPlugin.dll")]
private static extern int CallPluginMethod();
static void Main(string[] args)
{
Console.WriteLine(CallPluginMethod());
}
}
Can I develop DLLs in C or C++ language that are to be used in C# ASP.NET WebForms project?
I want the browser plugin to run (if already installed on system) when the user browses my webpage after checking if the browser plugin is already installed.
I will check if the browser plugin is ...
Go to the complete details ...