webbrowser

WatiN with webbrowser

I'm using the following code to bind watin to a webbrowser on the winform. Dim w As IE = New IE(WebBrowser1.ActiveXInstance) Settings.AutoStartDialogWatcher = False w.GoTo("http://google.com") I can see from wireshark that the page get's loaded, but the form is frozen until a exception gets thrown "Timeout while Internet Explorer busy...

iphone detect new style sheet

Hey, I am trying to trouble shoot a css issue that is appearing only in iphone browsers. I simply need to detect if the user is using an iphone, and if so, render a modified version of the div that is being affected. I am happy to just call this modified version of the css div in the header as it will save having a second style sheet. ...

How do you play a sound on the web browser?

How do I play a sound on the web browser as notification? ...

All frontend languages/solutions

Are these all the languages/solutions you could use in frontend? javascript+html+css flash java silverlight (c#, ruby, python etc) And what is a plugin for Safari and Firefox written in? Is it low-level languages like C++? ...

How browsers use the STRING defined in the <img src="STRING" /> to load picture file.

I have a very strange problem: I use xsl to show an html picture where the source is defined in the xml file like this: <pic src="..\_images\gallery\smallPictures\2009-03-11 אפריקה ושחור לבן\020.jpg" width="150" height="120" /> [the funny chars are Hebrew- ;) ] Now comes the strange part: When testing the file locally it works ...

Sproutcore or Cappuccino for Ruby-on-rails?

Rails is a very great backend framework keeping everything clean and structured. I guess that you all have thought about doing the same for the frontend. Sproutcore Cappuccino Do you use one of thes MVC javascript frameworks for the frontend with Rails? In case you do, do you feel satisfied with it? How did you code before and how...

Why don't they implement python and ruby on the web browsers?

I wonder, why don't they implement other languages like python and ruby on the web browsers? Don't they fit as client programming languages or did it just happen to be that Javascript was the first one to be implemented, and they then kept on only supporting javascript because it just worked. I mean...I really hate Javascript compared ...

How to call the OnChange event of "Select" ? (Delphi - WebBrowser)

Hello , I'm using Delphi and WebBrowser componenet to navigate a html page . the page have a Combobox . is there any way to call the OnChange event ? The ComboBox is like this : <select name="comboname" onchange="Some Javascript codes"> Also , i have used this code : function TFrmMain.SetComboboxValue(WB: TEmbeddedWB; SelectName,...

Serving Json from WCF Service with no extension in IIS

I have a WCF service set up to serve data through multiple endpoints (SOAP, JSON and XML) the SOAP and XML is working perfect, but when I try to view the json I get a prompt to download a file with the json results instead of displaying the results in the browser. This probably won't matter as the client will most likely be consuming th...

Is it possible to using WebBrowser in a Thread ? (Delphi)

Hello , I'm using WebBrowser control to fill a web page . is it possible to using WB inside a thread ? Thank you ...

WPF WebBrowser Issues

I am using the WebBrowser in WPF like this: <WebBrowser Name="SSSBrowser" Margin="8,4,8,8" Grid.Row="1" dp:WebBrowserUtility.BindableSource="{Binding WebAddress}"/> And in C# I am loading it simply, for now, like this: private string _webAddress; public string WebAddress { get { return "http://w...

Python code to open image in browser?

I want to open an image in the default browser with Python. I thought it might be as simple as webbrowser.open(path_to_file), but on XP at least that opens the Windows Picture and Fax Viewer instead. ...

Have to install Silverlight in browsers in the future too?

I know that you have to install plugins before you could use them in the web browser. Will it always be like this for plugins like Silverlight? Or do you think major browsers (Firefox, Safari, Chrome etc) be shipped with it in the future? ...

mini javascript browser

I was wondering if there was anyway I could make another browser within my webpage. Basically I want this browser to be an interactive area on my webpage (about half the page). The main page should be able to detect where every click was made within the mini browser. Is there some apis that would help me out? Or would my best bet be to...

WebBrowser and Cookies c#

I have a Cookie Container i'm using on lets say Form1 from a webRequest, after its a successful login with the request it stores the cookie in the cookie container.. How can i assign that cookie to a webBrowser control on Form2 so that it doesnt ask for a login again? Thanks! ...

Custom Domains in Chrome

I've got a vhosts file set up for my local machine where I use a made up domain (cascade.mtn) with a bunch of subdomains (rainier.cascade.mtn, hood.cascade.mtn, etc). In every other browser I can hit those domains just fine but in Chrome it just takes me to a Google search. Is there anyway to force Chrome to recognized the cascade.mtn d...

How do you inject a header using the Navigating event in WebBrowser in Windows.Forms (C#)

I'm trying to solve a problem where I'm intercepting a request in Navigating and want to inject an additional request parameter into that request before passing it off. Here are the steps: First I make a request via WebBrowser.Navigate. I have an event handler to capture the Navigating event. The request hits the Navigating event (be...

WPF Webbrowser Theme

I have a WPF usercontrol that is hosting the Webbrowser. The usercontrol is placed on a WPF Window. When I run the application (IDE or compiled), and display the following HTML inside the webbrowser: <INPUT TYPE=Button>Button</INPUT> The button has the 'ugly' Windows 2000 look. Even though I run with Win7 Aero, and the rest of my appli...

C# - Cannot find NavigateToString() method

Hi, I've heard nice stuff about the NavigateToString() C# method, but i can't seem to be able to use it =( I have a System.Windows.Forms.WebBrowser in a panel, and when i try to call NavigateToString() it says: "Error: 'System.Windows.Forms.WebBrowser' does not contain a definition for 'NavigateToString' and no extension method 'Nav...

Stream with Node.js doesn't work

I know that with Node.js you can stream data. But why doesn't this code work: var sys = require('sys'), http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write("hello"); res.write("world"); }).listen(80); Seems that I have to have res.end() after the las...