I need to use webbroser in my application as it keeps repetitive tasks from employees, but there is aproblem with javascript that opens a new window in IE after clicking on anchor. How do I tell webbrowser component to "open new window" where I want it to be opened? For example in the other webbrowser component?

link|improve this question

I'm interested in hearing the answer to this. But, wouldn't the component have to inform your application that a new window is to be opened? You would then have to open the new window with a new WebBrowser component. Maybe there's an event? – John Saunders Mar 31 '09 at 16:04
Unfortunately, the anchor is "javascript:void(0)" link.. I dunno how to solve this one – Skuta Mar 31 '09 at 16:09
I have edited my post – abatishchev Apr 2 '09 at 9:57
feedback

3 Answers

up vote 2 down vote accepted

Check out: proof-of-concept of .NET System.Windows.Forms.WebBrowser module using source code


My experience about that controls has given me a vision that this issue can tried to be solved in next steps:

  1. always cancel NewWindow event

  2. catch all links clicking

  3. but not all link can be cached this way, so I decided to parse all tags <a> manually on Document Loading Completion

  4. in general, this control is very poor and has been made so by Microsoft deliberately. though there is powerful toolset around Webrowser.Document.HtmlDocument and namespace MSHTML

  5. an example of it's using is HtmlElement.DomElement

    foreach(HtmlElement tag in webBrowser.Document.All) {
      switch (tag.TagName.ToUpper()) {          {
        case "A": {
          tag.MouseUp += new HtmlElementEventHandler(link_MouseUp);
          break;
    } } }
    
    
    void link_MouseUp(object sender, HtmlElementEventArgs e) {
    HtmlElement link = (HtmlElement)sender;
    mshtml.HTMLAnchorElementClass a = (mshtml.HTMLAnchorElementClass)link.DomElement;
    switch (e.MouseButtonsPressed) {
      case MouseButtons.Left: {
        if ((a.target != null && a.target.ToLower() == "_blank") || e.ShiftKeyPressed || e.MouseButtonsPressed == MouseButtons.Middle) {
         AddTab(a.href);
         } else {
     CurrentBrowser.TryNavigate(a.href);
     }
     break;
     }
     case MouseButtons.Right: { // show context menu }
     } } }
    

See more at first link, that is source of of the main window, there are a lof of different manipulations there!

link|improve this answer
and How do I insert this into my application? – Skuta Mar 31 '09 at 16:35
dotbrowser Doesn't work with javascript, shiat – Skuta Mar 31 '09 at 19:10
cool, there is the URL in A but I'd need to parse it cause it's part of onclick !!! GREAT. THANK YOU – Skuta Apr 2 '09 at 11:30
feedback

there's an error in the case MouseBUttons.Left: Error is:Error 1 Control cannot fall through from one case label ('case 1048576:') to another C:\Documents and Settings\ever\My Documents\Visual Studio 2005\Projects\Desarrollo\wApp_SurverMonkey\wApp_SurverMonkey\frmNetcare.cs 64 17 wApp_SurverMonkey

link|improve this answer
feedback

Why such a complex answer Guys? Abatischev, I'd be curious to see into your brain, should be interesting...

Just try this:

Private Sub WB1_NewWindow(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WB1.NewWindow
    newUrl = WB1.Url.ToString

    e.Cancel = True
    WB1.Navigate(newUrl)
End Sub

Now you may change the second line into WB2 or any other WebBrowser component in any of your OWN forms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.