internet-explorer-8

IE8 won't download a file with a custom mime/type with UAC enabled

梦想的初衷 提交于 2019-12-30 20:02:49
问题 I have a .net service running on the local machine (Windows 7 x64, IE8, .net 3.5, C#) that returns a file to the browser in response to a user action. Using firefox or chrome, the file is downloaded properly and our application is launched via a custom mime type and all is well. However, with IE8, I receive a dialog "unable to download file from . Unable to open this internet site. The requested site is either unavailable or cannot be found. Try again later". Using fiddler, I verified that IE

IE8 won't download a file with a custom mime/type with UAC enabled

放肆的年华 提交于 2019-12-30 20:01:28
问题 I have a .net service running on the local machine (Windows 7 x64, IE8, .net 3.5, C#) that returns a file to the browser in response to a user action. Using firefox or chrome, the file is downloaded properly and our application is launched via a custom mime type and all is well. However, with IE8, I receive a dialog "unable to download file from . Unable to open this internet site. The requested site is either unavailable or cannot be found. Try again later". Using fiddler, I verified that IE

Valum file upload - Works in Chrome but not IE, Image img = Image.FromStream(Request.InputStream)

自古美人都是妖i 提交于 2019-12-30 12:21:29
问题 I'm using a slightly modified version of Valum's upload [github link], I've modified it to upload to a database but haven't modified the javascript that it is using to get the file into the Request as an InputStream. The following line of code is failing in IE 8 but is confirmed to work in Chrome. using (Image imgInput = Image.FromStream(Request.InputStream)) The error received is "Parameter not valid". It appears to be having an issue with the Input Stream being used but it exists/has data

Avoid unwanted scrolling triggered by keyboard navigation in IE?

核能气质少年 提交于 2019-12-30 10:25:30
问题 I have an HTML page in which there is a <div> that contains content that is wider than itself; the excess is made invisible with the style "overflow: hidden;". There can be links in this content. In IE8 (but not Firefox 3.6), if you use the keyboard (i.e., tab key) to set focus to a link that is clipped at the right edge, IE will scroll the entire div left far enough to make the whole link visible. (The same thing happens with links on the left when they get focus, if the div has already been

IE security settings set to high - javascript not working

烈酒焚心 提交于 2019-12-30 06:59:08
问题 As soon as I set the IE security settings to high the javascript on my page stops executing. It doesn't throw an error or anything, and not even alert works. if I set the security settings back to medium everything works as it should. Has anybody ever experienced something like this? 回答1: This behavior is by design. The High security setting disables Javascript. 回答2: Setting security settings to high in Internet Explorer disables JavaScript: 回答3: you can use "noscript" tag to display a

Why isn't this simple bit of jQuery getJSON working in IE8?

我们两清 提交于 2019-12-30 05:12:10
问题 I've got a very standard AJAX request: $.getJSON('/products/findmatching/38647.json', {}, function(JsonData){ var tableHtml = ''; var x; for (x in JsonData.matchingProds) { var matchingProd = JsonData.matchingProds[x]; var buyMessage; if ( x == 0 ) { buyMessage = 'Buy Cheapest'; } else { buyMessage = 'Buy from this shop'; } tableHtml = tableHtml + '<tr><td><img height="40" src="' + matchingProd.img_url + '" alt="' + matchingProd.name + '" /></td> \ <td><a href="' + matchingProd._page_url + '"

Create script tag in IE8

痞子三分冷 提交于 2019-12-30 03:49:06
问题 I was testing our site, in IE8 and got the dreaded Unexpected call to method or property access. error. After lots of debugging (IE8's devtools suck), I found the offending line. $('<script>').html(JSData).appendTo('head') The problem is $('<script>').html(JSData) . I tried running just that in the console, and I still got the error. Why can't IE8 set the .html on a newly created script tag? P.S. This fails too: $(document.createElement('script')).html(JSData) UPDATE : I tried to create the

AngularJS: “Error: Unexpected call to method or property access.undefined” only in IE 8

你说的曾经没有我的故事 提交于 2019-12-30 03:48:08
问题 Have you ever had the error "Error: Unexpected call to method or property access.undefined" only IE8? What was causing it? How did you solve it? -- Note: It assumes the same code works fine in Chrome, Firefox, Safari Edit: Context I'm building a facebook page tab plugin with AngularJS + Google App Engine Python. I use a dozen custom directives either written by me or by the angular-ui team and 4-5 controllers. Everything works fine in Chrome, Safari and Firefox, but not in IE8. 回答1: The

Need a good Internet Explorer 6, 7, 8 standalone [duplicate]

时光毁灭记忆、已成空白 提交于 2019-12-29 10:15:11
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I need recommendations on a good Internet Explorer standalone for Internet Explorer 6, Internet Explorer 7 and Internet Explorer 8. I tried using Tredosoft's Internet Explorer 7 standalone and MultiIE for Internet Explorer 6, but select elements were being blocked as pop-ups, even when the pop-up blocker was turned off,

Need to open links in new tab in ie8 !

↘锁芯ラ 提交于 2019-12-29 08:31:51
问题 I have a sidebar (right sided iframe) and when i click on a link in it, it opens a new window in IE8, (in firefox it open a new tab). What do i need to do to open links in IE8 in a new tab. I already set the Tools->Internet Options->Settings-> 'Always open pop-ups in a new tab' and 'A new tab in the current window' open in new tab but still doesn't work. My links are pretty simple, what am i missing ? exemple: text. Also some site are saying to register Regsvr32 actxprxy.dll to fix this