This tag refers to the WebBrowser control for ActiveX (native) and for Windows Forms or WPF applications (.NET). This control "hosts Web pages and provides Web browsing capabilities to your application".

learn more… | top users | synonyms

117
votes
10answers
86k views

Replacing .NET WebBrowser control with a better browser, like Chrome?

Is there any relatively easy way to insert a modern browser into a .NET application? As far as I understand, the WebBrowser control is a wrapper for IE, which wouldn't be a problem except that it ...
33
votes
6answers
29k views

Regarding IE9 WebBrowser control

I recently upgraded to IE9-beta. Now, In my .net(3.5) WinForm application I want to use WebBrowser control. So my question is, whether the webbrowser control will exhibit all properties and functions ...
33
votes
13answers
54k views

How to inject Javascript in WebBrowser control?

I've tried this: string newScript = textBox1.Text; HtmlElement head = browserCtrl.Document.GetElementsByTagName("head")[0]; HtmlElement scriptEl = browserCtrl.Document.CreateElement("script"); ...
28
votes
9answers
4k views

Application that uses WebBrowser control crashes after installing IE9

I've installed IE 9 last week and since, my c# .net application crashes about 20% of times. The debugger is unable to show something useful besides stopping at Program.cs Application.Run(new ...
22
votes
6answers
17k views

Disable JavaScript error in WebBrowser control

I am developing a windows application with a WebBrowser control that navigates to a sharepoint site. My problem is that i am getting JavaScript error. How can i disable the JavaScript error? I don't ...
21
votes
4answers
26k views

Disable Drag and Drop on HTML elements?

I'm working on a web application for which I'm attempting to implement a full featured windowing system. Right now it's going very well, I'm only running into one minor issue. Sometimes when I go to ...
18
votes
4answers
5k views

What's a good browser-based terminal emulator?

We have several curses style applications which we'd like to provide access to through a browser-based interface. We have an application from another vendor which ostensibly provides this based on an ...
17
votes
1answer
12k views

Displaying html from string in WPF WebBrowser control

My data context object contains a string property that returns html that I need to display in WebBrowser control; I can't find any properties of WebBrowser to bind it to. Any ideas? Thanks!
14
votes
7answers
8k views

How to disable click sound in WebBrowser Control

I use Javascript to click a link in the webbrowser control. But I don't want to hear IE's "click" sound. Is there anyway to do this? P.S. I don't want to change system settings. I've seen this ...
14
votes
6answers
26k views

How to clear System.Windows.Forms.WebBrowser session data?

How can I clear current session data (cookies, cached data, auth sessions, etc) without restarting the application? Update: I'm talking about WebBrowser control in Windows.Forms, not the ASP.Net ...
14
votes
2answers
4k views

How to use Javascript on a WPF WebBrowser Control via MVVM

I am using an MVVM pattern on WPF4, though I am new to both. I am looking for a good solution to using a WebBrowser control that can receive Javascript commands and communicate with the ViewModel. It ...
13
votes
4answers
29k views

How to programmatically turn off quirks mode in IE8 WebBrowser control?

I want to use IE8 as a WebBrowser control in a C# application. How can I disable "quirks mode" and force IE into standards compliance (as far as it is implemented)?
13
votes
2answers
9k views

WebBrowser.DrawToBitmap() or other methods?

I am trying to capture the content of the WebBrowser control. DrawToBitmap() would work perfectly, but it is not supported in documentation for the WebBrowser control. I have been trying to find ...
12
votes
4answers
3k views

How does SO's form remember previous input values?

I've noticed that the Title or Body part is remembered if I come back to the Ask Question page by pressing Back button of my browser. This feature is available in all browsers I tested, but doesn't ...
11
votes
6answers
7k views

Is it possible to transfer authentication from Webbrowser to WebRequest

I'm using webbrowser control to login any site. And then i want to download some sub page html using WebRequest (or WebClient). This links must requires authentication. How to transfer Webbrowser ...
11
votes
2answers
4k views

What functional differences exist between WPF and WinForms WebBrowser control?

WPF WebBrowser control looks great but knowledge accumlated over time about WinForms WebBrowser is substantial and it's hard to ignore work like csExWB. It would be nice to know what functional ...
10
votes
4answers
5k views

WPF WebBrowser control - how to supress script errors?

I found a similar question here: How do I suppress script errors when using the WPF WebBrowser control? But non of those solutions work for me. I need to stop the popups from appearing as i am ...
10
votes
8answers
24k views

C#, Webbrowser control: How to delete Cookies from windows.form?

I am working with the Webbrowser control on a windows.form application written in C#. I would like to write a method for deleting the cookies from the Webbrowers control after it visits a certain ...
10
votes
9answers
13k views

How to Fix the Memory Leak in IE WebBrowser Control?

I am trying to embed a WebBrowser Control in a C# Winform Application. This sounds easy enough. However I discovered that the WebBrowser control eats up a lot of memory every time I call the Navigate ...
10
votes
1answer
11k views

Calling a Javascript function in the C# webBrowser control

I am using the webBrowser control in c# to load a webpage and need to call a JavaScript function that returns a string value. I got a solution to use the InvokeScript method, and i tried a lot , but ...
10
votes
3answers
9k views

Setting a cookie in a WebBrowser control

I am loading a website using a WebBrowser's Navigate function, and I want the browser to load the page with a cookie I've given it. The following code doesn't work: wb.Navigate(url, null, null, ...
10
votes
3answers
1k views

WebBrowser Control and the Embed Tag

I believe I am having a security problem related to using the embed tag with a WebBrowser control in my C# 2008 WinForms application. Here is my code: private void button2_Click(object sender, ...
9
votes
3answers
12k views

C# Web Browser component is IE7 not IE8? How to change this?

So I have an C# Form application that utilizes the web browser component. Apparently Response.Write(Request.Browser.Version.ToString()); returns "7.0" when I visit my test page from the web browser ...
9
votes
1answer
13k views

using Interop.SHDocVw.dll Where can i find this namespace/dll at?

I've done this before, I don't remember if i downloaded the DLL from off the net or something but i don't want to get a virus. I need access to this namespace so that I can have extra features that ...
9
votes
2answers
5k views

Prevent scrollbars with WPF WebBrowser displaying content

I'm using the WPF WebBrowser component to display some very simple HTML content. However, since I don't know the content size in advance, I'm currently getting scrollbars on the control when I load ...
9
votes
2answers
1k views

How to get XML (RAW/SOURCE) from a WebBrowser Control

I am using the WebBrowser Control in my both Delphi and .Net C# test projects to navigate to a local test XML file and try to save the content back to a XML file in .Net DocumentCompleted Event and in ...
8
votes
3answers
21k views

Changing the UserAgent of the WebBrowser control -Winforms C#

I am trying to change the UserAgent of the WebBrowser control in a Winforms application. I have successfully achieved this by using the following code: [DllImport("urlmon.dll", CharSet = ...
8
votes
2answers
18k views

Retrieving Selected Text from Webbrowser control in .net(C#)

I've been trying to figure out how to retrieve the text selected by the user in my webbrowser control and have had no luck after digging through msdn and other resources, So I was wondering if there ...
8
votes
5answers
30k views

Open link in new TAB (WebBrowser Control)

Does anybody know how to click on a link in the WebBrowser control in a WinForms application and then have that link open in a new tab inside my TabControl? I've been searching for months, seen many ...
8
votes
4answers
18k views

Load local HTML file in a C# WebBrowser

In my app I have a WebBrowser element. I would like to load a local file in it. I have some questions: Where to place the HTML file (so that it will also be installed if a user executes the setup) ...
8
votes
1answer
36k views

How can I hide the Adobe Reader toolbar when displaying a PDF in the .NET WebBrowser control?

I am trying to load a PDF document inside a .NET web browser control. In versions of Adobe Reader prior to v10 (aka "X"), the PDF loaded without the toolbar displayed—you would just see the PDF ...
8
votes
2answers
10k views

What is the best way to display HTML content on a Windows Form?

I want to display an HTML formatted content in my application preferably inside a Web Browser control. I could create an HTML document first and then load it in the Web Browser control, but that is ...
8
votes
5answers
28k views

How to use WebBrowser control DocumentCompleted event in C#?

Before starting writing this question, i was trying to solve following // 1. navigate to page // 2. wait until page is downloaded // 3. read and write some data from/to iframe // 4. submit (post) ...
8
votes
1answer
7k views

Why a RaceOnRCWCleanup error when closing a form with WebBrowser control on it?

VS2008, .NET 2, VB.NET, XP ... I have a Windows form, with a WebBrowser control and a Close button, which just does a Me.Close. The form's cancel button is set to the Close button, so that I can ...
8
votes
3answers
2k views

How to detect javascript execution in WebBrowser control

I have a WebBrowser control in my C# application. The webbrowser is under the user's control, that is, he can load any webpage his computer can access on the web (of course limited by proxy, hosts ...
8
votes
4answers
7k views

Best Way to Render HTML in WinForms application?

I have a WinForms application, running on .net 3.5. This Application generates HTML on the fly, which includes the complete document, and also an inline-CSS-Stylesheet (inside the head element). I am ...
8
votes
2answers
6k views

Host Silverlight in the Windows.Forms without the WebBrowser control

Is it possible to host Silverlight in the Windows.Forms without the WebBrowser control to avoid unnecessary COM marshaling? EDIT: The goal is to use a rich graphic content like WPF or Silverlight on ...
8
votes
4answers
5k views

Get Popup Information With WebBrowser

I am using the System.Windows.Forms.WebBrowser control to visit URLs. Certain URLs trigger popups which open in IE rather than in the WebBrowser. I don't care much where they open. But somehow ...
8
votes
7answers
8k views

C# WebBrowser control not applying css

I have a project that I am working on in VS2005. I have added a WebBrowser control. I add a basic empty page to the control private const string _basicHtmlForm = "<html> " ...
8
votes
1answer
533 views

C# Web Browser Control blocks parent's Load event

This may come across as incredibly stupid, but I cannot figure out if: I am an idiot I have misunderstood something The MS Web Browser control is bugged I prefer to think that it is the ...
7
votes
2answers
3k views

Is there a web browser component for use in FireMonkey application?

For Delphi VCL there is TWebBrowser and some 3rd party components like TEmbeddedWebBrowser available for browsing a web. Is there a similar web browser component but for Firemonkey framework in ...
7
votes
2answers
2k views

MSIEs WebBrowser control hosted in winforms app runs in compatibility mode

I'm hosting MSIE in a winforms form. Unfortunately it insists on running in compatibility mode regardless of if I give it a page that runs in IE8 mode in stand-alone IE. The effect of that is that ...
7
votes
3answers
6k views

WebKit API for DOM

Does WebKit expose an API for working directly with its DOM? I'm looking for a class like HtmlElement that can be used to build/traverse trees of HTML content. I'm trying to host WebKit as a web ...
7
votes
4answers
4k views

WP7 WebBrowser control zoom

Some pages are too small and hard to read in WebBrowser control, is zooming possible?
7
votes
3answers
968 views

How can you programmatically detect if javascript is enabled/disabled in a Windows Desktop Application? (WebBrowser Control)

I have an application which writes HTML to a WebBrowser control in a .NET winforms application. I want to detect somehow programatically if the Internet Settings have Javascript (or Active Scripting ...
7
votes
3answers
1k views

Non-IE WebBrowser ActiveX control

Google searches are leading me down a bunch of dead ends with this one. I am developing an Excel add-in in VBA, and part of it involves the use of the WebBrowser control to display a (known) webpage ...
7
votes
2answers
871 views

Multiple WebBrower sessions / processes in one window

I would like to create a .NET application that utilizes multiple instances of the WebBrowser control. The catch is that I'd like each web browser control to be running it's own session. IOW, I have ...
7
votes
2answers
3k views

Convert PDF File to HTML in C# [closed]

I had a problem highlighting text in a pdf file embedded in webbrowser control and highlighting text using PDFLibNet.pdfwrapper so i'm shifting to another process where i'll just convert the pdf to ...
6
votes
2answers
10k views

How do I turn off Compatibility View on the IE WebBrowserControl in a WinForms app?

In my WinForms app, if I use a WebBrowser control, it seems to be forced into compatibility mode. How can I disable this, and make it behave the same as standalone IE does on my machine when browsing ...
6
votes
4answers
14k views

Zoom in on a web page using WebBrowser .NET control

In IE7 there's a "zoom" feature built-in (show in the status bar), allowing you to zoom in up to 400%. I'm using the WebBrowser .NET control in a demo/simulation app, and need to zoom in on a web ...

1 2 3 4 5 39