internet-explorer-10

RequiredFieldValidator client side validations do not work on IE 10

让人想犯罪 __ 提交于 2019-12-08 17:51:29
All my webforms using RequiredFieldValidator, RegularExpressionValidator and ValidationSummary are not working on IE 10. It is working fine on any other browsers. It is strangely doing postback which does not happen on any other browsers. Another strange thing is when I open developer console(F12), it seems to be working but it is still doing postback. All these Validations should occur at client side by default. Has anyone here faced similar problem? Nag please check these link1 and link2 Edit: I got this fix from.. Hanselman Browser Definition files shipped with .Net 2.0 and .Net 4.0

overwrite X-UA-Compatible meta in SharePoint 2010

纵饮孤独 提交于 2019-12-08 15:41:27
问题 I am working on SharePoint 2010 and I want to use <meta http-equiv="X-UA-Compatible" content="IE=edge"/> for a specific page. The master page is setting it to "IE=8" which doesn't allow me to use box-shadow in CSS e.g. I don't have access to the masterpage to change it. Also I have read that changing that meta in master page is not recommended as it might cause issues with other things like calendars or whatever. So my Q is: is there any way of overwriting the X-UA-Compatible meta tag in a

Error: “command line driver for internet explorer has stopped working ” when trying to destroy the driver in selenium

旧城冷巷雨未停 提交于 2019-12-08 13:34:55
问题 When running automation tests with selenium, I have been getting this error routinely, but not always, after a test passes. After a pass, it tries to destroy the driver but stalls, and this is not acceptable when running many tests back to back. Seems to happen in tests that switch the iframe often, but I cannot figure out a solution. I tried switching to defaultcontent, which I saw as a fix somewhere else, and it does not work. I am running windows 7 and internet explorer 10, but the issue

jQuery POST not sending Content-Type on IE10

自作多情 提交于 2019-12-08 10:00:41
问题 I'm using jQuery 1.9.1 and Internet Explorer Version 10.0.9200.16686, Update Version 10.0.9 (KB2870699), on Windows 7 64-bit. When using $.ajax to POST, the Content-Type header is not being sent. It works fine in Chrome and other browsers, and I believe used to work fine before on IE10 so I suspect some update to IE10 caused an issue. I can also manually create an XMLHttpRequest and send a request, so I'm assuming it must be a bug in jQuery that's the real issue? I tried upgrading to 1.10.2,

Cookies in Windows 8 WinJS

左心房为你撑大大i 提交于 2019-12-08 09:31:31
问题 How can i enable for the IE10 store the cookies? Some internet services (Facebook Dialogs for example) pass variables this way which you need to use them in further request, but IE10 dont allow cookies. What i'm trying to do is login at facebook with "Windows.Security.Authentication.Web.WebAuthenticationBroker", get the token, and then open the feed dialog... when i try to open the feed dialog, i receive an error, because the page have no cookies... 回答1: If your question is about WinRT

Is IE10(+) identical on Windows 7 and Windows 8?

我们两清 提交于 2019-12-08 08:59:24
问题 I am developing on OS X. For testing I am using VirtualBox with windows VMs from http://www.modern.ie/en-us/virtualization-tools#downloads When testing my web applications, should I be testing in IE10 on both Win7 and Win8, or can I safely assume that IE10 behaves identically on both platforms and only test on Win7? And the same question goes for IE11. 回答1: No, they are not identical, but they should be the same for the common features that both support. IE10 and 11 on Windows 8 and 8.1

GET request sent to REST API only first time in IE10

让人想犯罪 __ 提交于 2019-12-08 07:32:39
问题 I've recently started using Restangular for making cross domain requests to a RESTful service, and so far everything works great. But with IE10 when a make a GET request only for the first time it gets data from the Server, and for subsequent calls it does not hit the server, and returns probably cached data. I need to get the data refreshed from the Server. I tried setting defaultHttpFields cache to false, but no luck. Please help! Thanks, Lakshmi 回答1: I'm the creator of Restangular. Could

IE10 reset the scrollbars (position to top-left) for a block (overflow:auto) after {display:none, display:block} sequence

穿精又带淫゛_ 提交于 2019-12-08 06:52:36
问题 IE10 resets the scrollbars (position to top-left) for a block element if it is hidden and displayed. This block is part of a complex UI that shows and hides blocks from various places. The other browsers and IE versions works as expected (display back the block maintaing the scroll position as it was before hiding the block). See the issue here on jsfiddle. HTML Last item is visible (100).<br> TEST : click <input type="button" id="hide" value="Hide"> then <input type="button" id="show" value=

WP8 : IExplorer 10 : on “keyup” event not firing for “RETURN” key

被刻印的时光 ゝ 提交于 2019-12-08 01:54:24
问题 I've just came across this interesting problem, or probably it's just me missing something very basic (hopefully). The problem is, that the keyup event is not firing for the return key in the WP8 browser, whereas all the other standard keys are firing this event up. I've tested this on the desktop, and IE10 is not having any issues with this, the event fires up nicely. Can anyone else confirm that on their WP8 devices the keyup event is not being triggered for the "return" key ? /using dojo

How to reliably convert XML to String in IE 10/11?

亡梦爱人 提交于 2019-12-07 17:58:33
问题 Namespaces are not being properly preserved by IE 10 and IE 11 when parsing XML with jQuery and converting back to string. Is there another accepted means of doing this in IE 10/11, aside from writing my own stringify code? Here is the code I am using, which I've also made a fiddle: http://jsfiddle.net/kd2tvb4v/2/ var origXml = '<styleSheet' + ' xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"' + ' xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"