Tagged Questions

A web browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information resource is identified by a Uniform Resource Identifier (URI) and may be a web page, image, video, or other piece of content. Hyperlinks enable users to easily navigate their browsers to related resources. The major web browsers are Windows Internet Explorer, Mozilla Firefox, Apple Safari, Google Chrome, and Opera.

learn more… | top users | synonyms (1)

99
votes
22answers
97k views

Auto detect mobile browser (via user-agent?)

How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?
89
votes
20answers
20k views

Why don't they implement Python and Ruby in the web browsers?

I wonder, why don't they implement other languages like Python and Ruby in the web browsers? Don't they fit as client programming languages or did it just happen to be that JavaScript was the first ...
53
votes
2answers
34k views

How can I open a URL in Android's web browser from my application?

How to open an URL from code in the built-in web browser rather than within my application ? I tried this : Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(strURL)); ...
26
votes
16answers
12k views

How do I uniquely identify computers visiting my web site?

I need to figure out a way uniquely identify each computer which visits the web site I am creating. Does anybody have any advice on how to achieve this? Because i want the solution to work on all ...
23
votes
5answers
6k views

How to embed a browser object, other than IE<n>, in a Delphi application

Using the default TWebBrowser makes things easy to embed a web browser. Unfortunately the one that comes in by default is IE<n>. I'm wondering how does one integrate a Gecko or WebKit one. ...
20
votes
6answers
8k views

databind the Source property of the WebBrowser in WPF

Does anyone know how to databind the .Source property of the WebBrowser in WPF ( 3.5SP1 )? I have a listview that I want to have a small WebBrowser on the left, and content on the right, and to ...
17
votes
3answers
3k views

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 ...
16
votes
9answers
7k views

C# WebBrowser Control System.AccessViolationException

I have a program that uses the built in webbrowser control. At some point during the usage of this, I'm not sure at what point, but it appears to be random, I get the following error: ...
14
votes
6answers
314 views

What's the best way to determine at runtime if a browser is too slow to gracefully handle complex JavaScript/CSS?

I'm toying with the idea of progressively enabling/disabling JavaScript (and CSS) effects on a page - depending on how fast/slow the browser seems to be. I'm specifically thinking about low-powered ...
14
votes
10answers
4k views

How to get started building a web browser?

I decided to put some effort in building a web browser (from scratch), any recommendations on how to get started! not only coding, also design patterns, and best practices advices are highly ...
13
votes
7answers
3k views

C# WPF WebBrowser alternative

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 ...
13
votes
11answers
841 views

What web based programming environments exist, on which to learn?

I loved appjet (the programming environment) before it was taken over by Google. What other web based complete programming environments are out there? Which one do you think is best for starting ...
12
votes
3answers
3k views

Clearing C#'s WebBrowser control's cookies for all sites WITHOUT clearing for IE itself

EDIT: As far as I know, there is no solution to this problem, making it yet another testament to the fact that one should not use C#'s WebBrowser. We ended up with a warning sign at the start of our ...
12
votes
3answers
11k views

How do I find out the browser's proxy settings?

I am writing a command-line tool for Windows that uses libcurl to download files from the internet. Obviously, the downloading doesn't work when the user is behind a proxy server, because the proxy ...
11
votes
5answers
1k views

How to get actual JavaScript value in onclick from webbrowser control?

I'm looking for a way to get the JavaScript code defined inside of onclick. I'm using .NET 2.0 C# Visual Studio 2005. Example: <span id="foo" onclick+"window.location.href='someURL'>click ...
11
votes
10answers
17k views

Change default browser in Visual Studio 2010 RC

In Visual Studio 2010 (RC) there is no longer a "browse with" context menu when right clicking .aspx pages. How can you change the default browser now? By default it seems to use the operating system ...
11
votes
6answers
472 views

Do valid web pages load faster?

I am a fan of valid web pages and always spend time passing new sites through the W3C validator. When trying to make a case for why companies should validate web pages I quickly thought of ...
11
votes
16answers
795 views

Is Web Browser “Discrimination” Okay?

Is it acceptable to add "special," but unnecessary, content based on a user's web browser? For example, is it okay to display this: at the top of my webpage for all IE users?
11
votes
8answers
5k views

When to use custom html tags?

What is the use case for using your own html tags? (In standard off the shelf browsers) A colleague and myself were discussing it lately. I could not think of a use case. We discussed it could be ...
10
votes
9answers
834 views

How to “manually” go back with a WebBrowser?

I'm working on a web scraper that sometimes needs to remember a particular page, then go to some other pages and then go back to that page. Currently I just save the URL of the page, but that doesn't ...
9
votes
3answers
2k views

javascript, circular references and memory leaks

From what I recall of a not too distant past, Javascript interpreters suffered from memory leaking issues when faced with circular references. Is it still the case in the latest browsers? (e.g. ...
8
votes
2answers
591 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
4answers
6k 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 ...
8
votes
8answers
2k views

Should the website switch language based on IP address or browser language?

Geo-location has been used most by Websites to do redirection, but I have found that several IP addresses locate a country which has using several languages. Meantime, some users prefer to using the ...
8
votes
8answers
284 views

Is there any issues with always self closing empty tags in html?

Are there any browser issues with always collapsing empty tags in html. So for example and empty head can be written like this <head></head> but is can also be written like this ...
8
votes
18answers
2k views

Why is JavaScript considered bad by some?

Why is JavaScript allowed to be disabled in the browser? (i.e. Why is it considered bad?)
8
votes
7answers
16k 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 ...
7
votes
3answers
295 views

Website Automation Using C# and WebBrowser

I am building an application which opens a website in WebBrowser control and then puts some text in fields and then clicks submits on few buttons one after another. Have a look at code bellow... ...
7
votes
4answers
3k views

Which Javascript version(s) does IE8 supports?

According to Wikipedia, IE8 only supports Javascript 1.5. So they are saying IE8 completely ignores Javascript versions 1.6, 1.7, 1.8 and 1.9. Should i trust? Is it true? thanks m.
7
votes
2answers
3k views

Prevent WebBrowser control from stealing focus?

Is there a way to stop the WebBrowser control from causing its parent form to bring itself to the front? If you use the InvokeScript method to invoke a JavaScript function that calls focus() on an ...
7
votes
1answer
3k views

C# System.Windows.Forms.WebBrowser Requires Flash to be Installed

When I create a form and add a WebBrowser control to it and have it navigate to http://www.adobe.com/flashplatform the flash area says I need Adobe Flash Player installed. This is already installed in ...
7
votes
3answers
12k views

Web browser: Hide mouse cursor

Is it possible to hide the mouse cursor in a web browser? I've done this in Flash for a touch screen application, where a mouse cursor is distracting and unneeded. This time it's for a display screen ...
7
votes
6answers
18k views

C# WebBrowser control — Get Document Elements After AJAX?

I'm writing an application that uses the WebBrowser control to view web content that can change with AJAX that adds new content/elements. I can't seem to get at the new elements any way I've tried. ...
7
votes
3answers
5k views

How to block downloads in .NET WebBrowser control?

I need to prevent the .NET WebBrowser control from showing any "Do you want to open or save this file?" and "Save As" dialogs. Instead, I want to display a message box telling users that file ...
7
votes
11answers
672 views

What browser is best for testing web standards?

When I build a site, I'd like to have at least one browser I can show it off in without any hacks or workarounds, and yet still retain maximum functionality. Knowing that none of the browsers have ...
6
votes
1answer
224 views

How to get around the memory leak in the .NET Webbrowser control?

This is a widely-known, old issue with the .NET Webbrowser control. Summary: Having the .NET webbrowser control Navigate to a page increases memory usage that is never freed. Reproduce the memory ...
6
votes
4answers
383 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 ...
6
votes
2answers
502 views

Google Chrome Frame in C#?

How can I use Google Chrome Frame in .NET's WebBrowser control? I know I have to have: <meta http-equiv="X-UA-Compatible" content="chrome=1"> In the beginning of the page that I'm loading, ...
6
votes
6answers
181 views

style type=“text/css” … what else is there?

Are there any other types that browsers support for the style tag besides "text/css"? (Excluding any synonyms for css). If not, then why not? <style type="???"> ... </style>
6
votes
7answers
7k views

Detect WebBrowser complete page loading

How can I detect when a WebBrowser control has completed loading? I tried to use the Navigate and DocumentCompleted events but both of them were raised a few times during document loading!
6
votes
3answers
3k views

How does JavaScript `Date` object determine the locale of the users browser?

I am trying to understand how the JavaScript running in the various browsers determines the locale that will be used by the JavaScript Date object when using the method toLocaleString. I have ...
6
votes
4answers
588 views

IE7 default form method is “GET”. How can I tell if it's user-entered or default?

If a user creates a form without a method attribute, it seems like most browsers will handle this at the time of form submission. So upon inspection of the form element after the DOM is ready, you can ...
6
votes
5answers
5k views

.Net WebBrowser.DocumentText Isn't Changing!

In my vb.net program, I am using a webbrowser to show the user an HTML preview. I was previously hitting a server to grab the HTML, then returning on an asynchronous thread and raising an event to ...
5
votes
2answers
200 views

Async/Await implementation of WebBrowser class for .NET

Longtime reader, first-time poster here. My goal: To be able to take advantage of async/await while using the WebBrowser class. As the WebBrowser.Navigate(string url) is an asynchronous method, and ...
5
votes
1answer
160 views

How do I make TWebBrowser keep running JavaScript after an error?

I'm having some troubles with javascript error handling in WebBrowser on Delphi 2010. I'm using WebBrowser with enabled silent property. Seems OK, but there is one issue on sites with buggy scripts: ...
5
votes
2answers
463 views

input tag InvokeMember(“Click”) not firing onclick event in web browser

I am using Dotnet Web Browser to click an Input Element - Button. When this click event is fired, it performs a JS function, which generates captcha using Google Recaptcher, source of which looks like ...
5
votes
2answers
379 views

Force Browser to cache images

I am generating the images and want browser to cache them forever, but instead browser never cache them at all. This is my php code header('Content-type:'.$file->content_type); header('Expires: ...
5
votes
4answers
159 views

Instruct browser to only prompt for saving username/password when they have logged in successfully?

I noticed that some site would trigger the browser to prompt for saving username/password Only when they have logged in successfully. How to achieve that? response with HTTP 401 / 403 on error along ...
5
votes
2answers
989 views

In WP7 TextBox.Focus() does not work when WebBrowser control is present on page

I need to set focus on the textbox. The problem is when a WebBrowser control is present on the page, the SIP is displayed as if textbox is selected, but cursor is not visible in textbox and the input ...
5
votes
2answers
923 views

“SDK-buildable” Open Source Web Browsers for Android

I am trying to build a comprehensive list of known non-AOSP open source web browsers for the Android, from which fellow programmers and I can learn-by-example. By non-AOSP I mean that it can be built ...

1 2 3 4 5 32