WebBrowser control has a built in property called DocumentText which is used get or set html source of page. Geckofx has not such property by following code we can get page source easily.
In this tutorial we will learn how to embed GeckoFX in winforms using c#.
Dot Net has a built in web browser control which is wrapper of IE. This control is depended on IE it uses IE's rendering engine (whatever version is installed on the end-user's machine).
There is common exception “Unable to find the requested .Net Framework Data Provider. It may not be installed” while working on new database factories like Sqlite or Mysql the reason behind this exception is no registration of class factory. According to MSDN “Each .NET Framework data provider that supports a factory-based class registers configuration information in the DbProviderFactories”.
Our task is Registering DbProviderFactories Using Configuration file Or using Programmatically.
Sometimes it is required to view web project from Local area network rather than localhost. But Visual studio’s built in server work only for localhost. Other method is to use IIS web server but we have not......
Using DataTable as DataSource to DataGridView as binding is an easy task, on the other hand using List<Class Objects> as DataSource is little tricky. In this tutorial we learn how we can bind List<Class Objects> to DataGridView as DataSource.