Skip to content Skip to sidebar Skip to footer

Ie8 Ado Warning When Opening A Record Set With Javascript

I have a few HTML pages that use javascript to run sql queries etc. these html files are accessed from a share drive on the network. this works perfectly in IE6. My workplace

Solution 1:

you're getting the cross-domain alert because your accessing data on a different server. you can put them on the same server and that should fix your problem.'

regardless, and i mean this with all sincerity, you need to get up with your it department and have a little heart-to-heart; they're going to be wary of you and most likely dissmissive...do not let them dissuade you. be polite but be just as stubborn. and if you really want to be a dick about it, when they're up on their high horse telling you nay, you should question their expertise...particularly with user-agents. if they're converting from ie6 in 2012....there's no situation they can describe that makes that acceptable. i'm assuming your intranet was built specifically for ie6 and that'll be their main excuse.....dude ie7 came out in 2007. their excuse is five years old. furthermore....it's still weak sauce.

you and all of your coworkers can enjoy chrome if you add chrome frame to your installation. look it up. wow your it department.

lastly....you're a developer that is not allowed to choose browser, and the browser they grant you access to isn't even fully functional? a)Quit b)Quit c)Quit

Solution 2:

Albert already talked you through it (and how right he is). Otherwise a solution could be to put a pass through server (somewhere in your network) between the client and database, e.g. using node.js with an odbc library like node-tds or tedious.

Post a Comment for "Ie8 Ado Warning When Opening A Record Set With Javascript"