views:

243

answers:

4

Is there a simple .Net wrapper for Firefox or Chrome so that I could implement a web crawler and other web stuff? I might need post-form functionality also.

+3  A: 

see: http://code.google.com/p/geckofx/

Gecko is the engine that's used in Firefox.

Niek H.
A: 

Skybound has released an open source .NET wrapper for Firefox at http://geckofx.org/

Praveen Angyan
A: 

Here is a good source of ideas and source code.

Macarse
+1  A: 

The Mono project has a .NET webbrowser that allows you to use either the Gecko (Firefox) or Webkit (Chrome, Safari) rendering engines under the hood, exposing either as a clean, well-designed .NET API. See Mono.WebBrowser.

Judah Himango