browser

Widescreen check on normal screen

Hi, I work normal screen and I develop some web application. When the application goes on widescreen some of the pages looks weired. Is there any way I can view my web page as it looks in Widescreen on my normal screen. Someway to either change resolution for only IE or is there any way (add-on in IE) that i can change resolution for o...

IE8 Browser Mode & Standards Mode

I need to force IE8 to display as follows: Browser Mode: Internet Explorer 8 Document Mode: IE8 Standards I have added this tag however it only affects the document mode, not the browser mode. How do I override browser mode to ensure the page is always shown with IE8 browser mode too? <meta http-equiv="X-UA-Compatible" content="IE=8...

Something in my coding is stretching my page horizontally.

I've just spent the last month or so designing a new layout for my website. I think it's about perfect, however, I've discovered that there's something stretching my site horizontally beyond the page width. I've searched through my code and I can't seem to figure out what it is. If you check out my test page, you'll see that there is ...

Auto-detecting language files based off browser and URL combos with PHP

I have a site with many people from around the world. The entire thing is UTF-8 so people are free to submit content and speak in any language they wish - from Greek to English. Now the only thing that the user can't control is the built in site language used for things like navigation and instructions for registering. These strings are...

How to run the computer browser and server services automatically?

How to run the computer browser and server services automatically? When I start my computer browser from services.msc,it stops after 2 or 3 hours.I dont want this to happen because,my applications use the network and need this service to be running continuosly. ...

Re-Focus Browser in Javascript when Dragging File from Desktop

Hey there, When I drag a file from the desktop to the browser, and I keep the browser in focus (Safari or FireFox for now), I know everything works right (dragging, having the app respond, etc.). I am also able to un-focus the browser, by clicking on my desktop for example (keeping the browser in view), and when I drag the file to the ...

How to invoke a browser via Java coding?

I want to invoke a browser (e.g. Internet Explorer/Firefox/Google Chrome/Opera) via a Java interface. Also I need to pass some web links to this Java process. How to achieve this? ...

MySQL - Username to connect using Query browser

Hi, I'm fairly new to my sql, and I need to know what is the default username for mysql, like in mssql you have 'sa'. I can connect to the mysql command client but it does not ask me for a username. ...

which browsers support XBAP at the moment?

I know of IE8, Firefox, any others? ...

Dont allow multiple tabs in same browser

How can i allow multiple tab browser sessions? I've done research and found this line of code: <sessionState mode="InProc" cookieless="UseUri" /> I was not allowed to use this because the url was displaying the session id on every tab. Are there any other way else i can allow unique session id in multiple tabs? Does any other state...

Absolute positioned div and its content

EDITED: this first version was a false example with false assumptions! See below for new version! The Setting: I have 2 absolute positioned divs: <div class="menuSubBack">&nbsp;</div> <div class="menuSub"> <ul> <li>test1</li> <li>test2</li> </ul> </div> with the following styles: <style type="text/css"> .menuSub { pos...

Flex Browser Automation

I'm trying to create a Flex application that automates a web browser to perform certain tasks. I would use the application to login to a site, parse data out of the HTML, and send it to a jsp page for processing. I currently have an application written in WPF that does that exact thing, but it needs to be ported to flex. Any known w...

What are my options for accessing the user's GPS device in a desktop browser?

After reading about Firefox's Geolocation functionality, which doesn't use GPS, I'm wondering what it would take for a browser (IE and/or Firefox) to be able to access a GPS device connected to a normal laptop/desktop computer? So far the only technology I've found that seems to be able to do this is Google Gears' Geolocation API or dev...

Destroying session on close of the browser from the task bar

Hi, When i close the browser window from the task bar the session is not getting destroyed. I could handle this on closing the browser using close(X) button or by pressing Alt+F4 using javascript. But from the task bar if i close the window how can i clear the session? The problem occurs only when there is another browser window already...

Android: Anyone knows how long the web history is retained for?

I was wondering if anyone knows if android clears up the websites visited log from inside its database based on date or number of entries in the database... Any inputs? ...

IE 7 Browser -> File -> Print causing PostBack to page? ASP.NET 3.5

I have code that "pops up" another ASPX page with an image in it. The javascript used to popup the the window is below. string url = @"DocumentPage.aspx?imageGuid=" + imageGuid; string winWidth = "800"; string winHeight = "600"; StringBuilder scriptString = new StringBuilder(); ...

Determine which OS from Javascript

Is there a way to determine which OS is the browser being run on? I have an NPAPI plugin which, at the moment, can only function on Linux and I would like to alert users if they try using the plugin on !Linux machines. ...

Browser ContextMenu event

Does anyone have any insight as to the future browser support of the right-click event on the document object? I see that Opera (2.3% of users) currently doesn't support it. Thanks, Bill ...

Json Date to JavasScript Date Conversion problem

Heres the code for converting the json retured date to a string of date. String.toDate = function(stringDate) { var newDate = new Date(parseInt(stringDate.replace("/Date(", "").replace(")/", ""), 10)); return newDate; } Here are the details: Date from the database: 2009-11-18 03:23:25.107 Date Returned by JSON: "/Date(1258514605107)...

[Python] 'import feedparser' works via SSH, but fails when in browser

I installed feedparser via SSH, using $ python setup.py install --home=~/httpdocs/python-libraries/feedparser-4.1/ I did that because I don't seem to have permission to properly run 'python setup.py install' I am running the following python code in 'test.py'. print "Content-type: text/html\n\n" try: import feedparser except: ...