internet-explorer-11

ASP.NET website issues with Windows 8.1/IE 11 browser

丶灬走出姿态 提交于 2019-12-06 01:57:18
问题 We have ASP.NET application, currently we are doing compatibility testing for this on Windows 8.1/IE 11. Found some issues related to UI alignment, _dopostback and imagebutton click. Previously faced the same issues with Windows 8/IE 10 as well. Those issues are addressed by adding IE browser file in app_browser folder in the project. But we have not found any ie.browser latest file for IE 11 support. From some of the blogs came to know hot fixes are there to resolve this issues.Tried by

Why does IE11 create blank post request except when Fiddler is running?

懵懂的女人 提交于 2019-12-06 01:23:10
My AngularJS $http post requests to my C# WebAPI restful service fail on Windows 8.1 in Internet Explorer 11. Firefox and Chrome both work. Some more details: The IT department says our network has no proxy All 'automatically detect' and 'use proxy' settings are unchecked in all browsers The requests fail to IIS both on my localhost and running the site and service on a local server Enhanced protection mode of IE11 is off The request's connection header is 'keep-alive' (I tried 'close' too and it still failed) Sometimes one request will succeed and only from the second request will everything

Compatibility problems with Internet Explorer 10/11 and an old .net framework 1.1 website

别等时光非礼了梦想. 提交于 2019-12-06 00:40:46
The Scenario I have a very old website developed in .net (framework 1.1). The site has several problems with Internet Explorer 10/11 that can be fixed using compatibility view. The Problem Problem is that framework 1.1 doesn't recognize Internet Explorer 10/11 as an advanced capability browser, so a lot of features (for example javascript code) are disabled when a user with Internet Explorer 10/11 accesses the website. Microsoft released patches to fix this problem for .net framework versions >=2.0 but not for framework 1.1. What I already tried I tried forcing IE7 Compatibility Mode in web

How to prevent automatic scaling in Modern UI IE 11 on Windows 8.1/8?

♀尐吖头ヾ 提交于 2019-12-05 23:24:44
Windows 8.1/8 has a split screen feature which is nice while using multiple apps (like modern UI version IE11) in one screen. Most of the time when you set the IE split screen very narrow, you'll notice the web page zoomed out automatically, but some pages (like microsoft.com) are different. They doesn't zoom out and recognise the narrow width correctly, so it's easy to do some responsive deign. My question is: What code made that difference? I've tried <meta name='viewport' content='width=device-width, user-scalable=0, initial-scale=1.0' /> but IE11 still zooms out the page. I got the answer

First HTTPS connection is very slow in Internet Explorer 11, what can it be?

我是研究僧i 提交于 2019-12-05 23:17:26
问题 When using Internet Explorer 11 to connect to a HTTPS site of my company, the first connection is very, very slow. Usually more than 30 seconds. After this first connection, I can browse the site with no problem. The problem just happens in Internet Explorer, it works fine in Chrome and Firefox. If after the first visit, I clear the cache and cookies, the next page load is quick. I have to close the browser and reopen it to reproduce the problem. Even if I let the browser idle for a couple of

jQuery POST does not submit form values using IE 11

╄→гoц情女王★ 提交于 2019-12-05 21:58:26
问题 I have tried to find a solution for this problem for hours now, but the following code is simply not working for Internet Explorer 11. It does work for Chrome and Firefox. When using IE11 the post is submitted but the submitted form is empty. <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> </head> <body> <form action="/Mandate/Edit" id="mandateForm" method=

How can I locate and debug a specific file in IE11 Dev Tools?

∥☆過路亽.° 提交于 2019-12-05 21:45:50
I have a file that is part of a legacy web site I'm maintaining that I need to debug - step into, etc. But I can't see how to do that. The site needs to be run in IE, in Compatibility mode. When I run the site from VS (2013) by right-clicking the " http://localhost/ ..." item beneath the solution and selecting "View in Browser (Internet Explorer" and then hit F12, I see on the Debugger tab the file that has been set as the Default page (the "main" page I see after logging in), but from there I don't see how to open a different file - the one I need to debug. There are a handful of files

IE11 on Windows 7 does not cache files

微笑、不失礼 提交于 2019-12-05 20:22:51
问题 When examining cache behaviour on our web site I got a very confusing result - my Internet Explorer 11 browser did not cache any files at all. The cache settings in the Internet Option is set to "Check for newer versions of stored pages: Automatically". Investigating further with IE developer tool, all files were requested without an "if-modified-since" HTTP header, which of course caused the server to return the complete file with a 200 status result. Expected behaviour would be that IE

Wrapping flex items in IE11 is broken

给你一囗甜甜゛ 提交于 2019-12-05 19:37:56
I am trying to build a form layout with the capabilities of the new CSS3 Flexbox. The goal is that the elements of a fieldset arrange themselves properly, while you change the number of elements in a fieldset, change the font-size, or change the view size. The form layout should work in all modern browsers: Chrome 35, Firefox 29 and IE 11 It looks very promising except that it does not work in IE 11. I simplified the code and post it on http://jsfiddle.net/T4RL6/ . Here view looks correct like Chrome and Firefox. Most important CSS code part: .fieldset { background-color: green; border: 1px

history.pushState disappears in IE 11

淺唱寂寞╮ 提交于 2019-12-05 19:09:00
There is a site http://www.pionart.pl which is a good illustration of the problem I have with the current site I develop with almost the same code/CMS When I enter the site with IE 11, the browser forgets half of the history methods, incl. history.pushState() (you can easily check it by invoking the console with F12 and typing history.) When I enter http://stackoverflow.com in the same tab, IE suddenly remembers all the methods back. The question: what is the purpose of the "forgetting"? How to prevent it? Adam The problem was <meta http-equiv="X-UA-Compatible" content="IE=9"> It forced IE 11