webbrowser

A trouble with web browser in C#

I want to get captcha from yahoo.com to show my form. I create a button with event click. System.Net.WebClient wc = new System.Net.WebClient(); HtmlElementCollection imgs = this.webBrowser1.Document.GetElementsByTagName("img"); for (int i = 0; i < imgs.Count; i++) { if(imgs[i].Id.Trim() == "cimg") wc.DownloadFile(imgs[i].Ge...

get pictures fom webbrowser to picturebox

I am having a problem displaying some pictures (more than one) in a picturebox. <div id="salary_total" style="display: block;"><table style="border: 3px solid rgb(71, 5, 6); padding-right: 1px;" bgcolor="#ffffff" cellpadding="0" cellspacing="0"><tbody><tr><td><img src="./images/counter/b.gif"></td> <td><img src="./images/counter/3.gif"...

Web Browser control is not loading images

I have a webBrowser Control. HTML inside webBrowser control displays some small images (4kb each). However when I run my application, Images are not loaded in to webBrowser Control. Also I have used javascript function to keep refreshing page at some interval. function StartTimer(MS){ TimerObj = setTimeout("window.location.href=windo...

Do web browsers process the "xmlns" attribute?

At W3schools an article on XML Namespaces states: Note: The namespace URI is not used by the parser to look up information I have a very simple XML file: <?xml version="1.0" encoding="utf-8"?> <foo> <bar>Hi!</bar> <button xmlns="http://www.w3.org/1999/xhtml"&gt;Click Me!</button> </foo> Opening this file in Chrome or Firef...

Problems on loading Excel 2007 file into WebBrowser control in C#?

I need to host Excel spreadsheet in our WinForms app. It looks loading the excel file into WebBrowser control is the way to go. There are several articles on the Internet about this. However, they mostly use Excel 2003 (I guess). Excel 2007 presents some new problems: By default, the Excel spreadsheet is opened up in a new window, inst...

Get the focused element in NETCF WebBrowser contol

Wondering if anyone knows of a way to get the element which currently has input focus within the DOM of the page currently loaded in a .NET CF WebBrowser control. I want to use a control from OUTside the WebBrowser to insert some data into the currently focused control in the DOM. ...

C# WPF WebBrowser alternative

hi, I need a web browser inside my .NET 3.5 application and I don't want to use the default webbrowser (because it feels buggy and slow). I tried Chris Cavanagh's chromium but I just couldn't get it to work... are there any easier to use alternatives? I'm looking for something very simple and light on the computer, it will host a webstor...

multiple webbrowser navigation freeze problem

Hi, I have problem with multiple webbrowsers on form so i created simple form with 10 browsers in it and 1 button: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate("http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/thread/8a234c57-0872-469d-9b34-c89...

Disable F5 in WebBrowser

Possible Duplicates: Disable browser's back button How do I disable the F5 refresh on the browser? Hi, I created an application in C# that will download data from the internet (and this is done one time only) and put it in a webbrowser and this data should be static. I want to know if there is a way to disable the F5 key fr...

How to automatically scroll to the bottom of an HTML document loaded in a WebBrowser or Frame?

I'm using an HTML document to show text output in my application - this gives me the flexibility of HTML and the power of CSS, and I can publish the generated HTML as a log file openable in any browser. When new information is available, I update the HTML file and then call Refresh() on my WebBrowser control. Naturally, I want the user...

Funny WebBrowser behaviour

I put a webbrowser in a windows form and set browsercontextmenu to false. Now I have a very long html body which consists of words and at the bottom of it is a link. If you click the link it will not navigate to a link but rather will show a (/) sign. But if I put the link at the very top everything is ok. Anyone experiencing this behavi...

How to know the browser the user is using?

Hi, We have started developing an application for location aware emergency service. The users can connect through computer,smart phone or even through WAP. We want to use cloud servers (GAE or AWS). We want to optimize the site for the user's device. I can not find out exactly how to know the device or the browser the user is using. Fro...

Javascript test for IE Text Size (EG "Largest") or any other accessibility settings (high contrast etc)

Hi, We are looking for a way to collect usage stats of our users web browser/OS configuration in regards to accessibility to better understand the range of users we have. If I can find a way to collect this data via javascript then I can capture it in via our analytics tool (same as google analytics variables). These are some of the th...

Silverlight WebBrowser - Open Local File?

Our Silverlight application needs to show to the user previews of HTML pages it generates dynamically, so we want to use the WebBrowser (or something similar like Telerik's RadHtmlPlaceholder) to show these pages. The problem is that the HTML contains links to other local files such as images, flash objects, CSS and javascript files. The...

C# window rendering PHP

Hello I want to build an application written in C# that renders a webpage in a dialog. Simple enough there are lots of tutorials on how to do this http://www.codeproject.com/KB/cs/webbrowser.aspx Now I want to render some PHP pages instead of static pages, mainly to configure a database (SQLIte) and add a few recored, ect. I don't w...

c# WebBrowser SVG Windows 2008 R2

I have a WebBrowser in my C# application, in which i want to show a SVG file. However, when I run the app on a Windows 2008 R2 machine, the SVG file does not show up. When I have a look at the same file on the same server in Internet Explorer, everything looks ok. What i already have tried: IE ESC settings on or off Trusted Sites / L...

How to always show scrollbar in browser using javascript?

Hi there, I want to always show vertical scrollbar in my webpage. How it is possible using javascript? I think it is possible using javascript or jQuery. I want vertical scrollbar whether there is enough content to show or not. thanks. ...

Typiclal DNS lookup behaviour of browsers on diffent platforms, for IP addresses?

When browsers look up hostnames, do they do that even when the "host name" is an IP address? For instance http://74.125.39.105/ goes to some Google servers. Will this result in a DNS lookup on common browsers and platforms, such as Safari, IE, Firefox, Chrome, Opera, Windows, Linux, Mac OSX? Or will the browser (in the common case) just...

Which browsers do not support animated gifs?

It's seems like all major browsers (ie, firefox, safari, chrome) support animated gifs. Though I've been reading that IE might not be faithful to high frame rates. Who doesn't support animated GIFs? Iphone safari seems to just fine. What about other mobile browsers? ...

Ctrl+F5 vs Ctrl+R (On Browsers)

is there a difference between these two shortcuts on most browsers? ...