internet-explorer-10

IE10 - how to prevent “Your current security settings do not allow this file to be downloaded” popup from appearing?

送分小仙女□ 提交于 2020-01-09 10:27:26
问题 I’m using wpf WebBrowser control (System.Windows.Controls) and I need to prevent users from performing various actions like downloading files or printing pages. I have disabled file download option in Internet Explorer options (Security tab -> Custom Level -> Downloads -> File Download). Because of that, after clicking let’s say on a pdf link, instead of a file download popup I get a popup with such a message: "Your current security settings do not allow this file to be downloaded". Is there

Accessing IE tabs once created

我只是一个虾纸丫 提交于 2020-01-09 07:19:48
问题 Using VBA I can create an InternetExplorer object with 3 different tabs using the following Option Explicit Public Enum IE_READYSTATE Uninitialised = 0 Loading = 1 Loaded = 2 Interactive = 3 complete = 4 End Enum Sub Example_Click() Dim ieApp As clsIE 'Create IE and login If ieApp Is Nothing Then Set ieApp = New clsIE With ieApp 'IE Tab1 .IE.Visible = True .IE.navigate "http://www.bbc.co.uk/news/" Do While .IE.Busy Or Not .IE.readyState = IE_READYSTATE.complete: DoEvents: Loop 'IE Tab2 .IE

IE10 SCRIPT5009: '__doPostBack' is undefined

我的未来我决定 提交于 2020-01-09 04:18:32
问题 I am facing a problem on IE10 with ASP.NET controls that requires JavaScript post back[like, link button]. It is properly working on the IE9 version as well as on IE10 Compatibility mode. But on the IE10 standard mode, it is giving below error. SCRIPT5009: '__doPostBack' is undefined [I have created a demo project with a simple asp:link button that redirects to another page.] Tried the solution, but didn't work for me Can anyone suggest fix for this? 回答1: There is apparently a bug in the

IE10 SCRIPT5009: '__doPostBack' is undefined

风流意气都作罢 提交于 2020-01-09 04:18:06
问题 I am facing a problem on IE10 with ASP.NET controls that requires JavaScript post back[like, link button]. It is properly working on the IE9 version as well as on IE10 Compatibility mode. But on the IE10 standard mode, it is giving below error. SCRIPT5009: '__doPostBack' is undefined [I have created a demo project with a simple asp:link button that redirects to another page.] Tried the solution, but didn't work for me Can anyone suggest fix for this? 回答1: There is apparently a bug in the

Internet Explorer 11 - Difficulties in Selecting Text

独自空忆成欢 提交于 2020-01-07 04:18:49
问题 I'm running my .NET application in Internet Explorer(Version 11) in compatibility mode. I'm using grid views to display content on my ASPX page. When I open the page and tried to select some cell or row from grid views, it is not selecting properly. It is so difficult or impossible to select exactly the text you wanted to copy into an e-mail or a document. When you dragged the mouse to select text, you often selected adjacent paragraphs or columns also, even though you didn't want them.

Flexbox centering and overflow bug in IE10?

爷,独闯天下 提交于 2020-01-06 01:50:27
问题 What I want to do basically is have a header and a container always centered if they're small than the screen (body with 100% height). In case the content and header are bigger than the screen, then allow to scroll inside its container (notice that the header shouldn't be scrollable). I managed to make it work in Chrome but not in IE10. This is the JSFiddle. var p = $('p'); $('button').click(function(){ for(var i=0; i<30; i++){ $('.content').append(p.clone()); } }); .screen{ border: 1px solid

InternetExplorer.Application com object and windows 2012 in powershell

帅比萌擦擦* 提交于 2020-01-05 12:54:14
问题 I am trying to access the document of an internet explorer com object with windows 2012. The code works great in windows 2008 but as soon as I try to run it on windows 2012 (fresh install, tried on more than one server), the same code stops working. In other words, $ie.document.documentHtml returns as null. Below is the code: $ie = new-object -com "InternetExplorer.Application" $ie.navigate2("http://www.example.com/") while($ie.busy) {start-sleep 1} $ie.document.documentHtml.innerhtml Has the

InternetExplorer.Application com object and windows 2012 in powershell

喜欢而已 提交于 2020-01-05 12:54:10
问题 I am trying to access the document of an internet explorer com object with windows 2012. The code works great in windows 2008 but as soon as I try to run it on windows 2012 (fresh install, tried on more than one server), the same code stops working. In other words, $ie.document.documentHtml returns as null. Below is the code: $ie = new-object -com "InternetExplorer.Application" $ie.navigate2("http://www.example.com/") while($ie.busy) {start-sleep 1} $ie.document.documentHtml.innerhtml Has the

How to get IE 10 to show scrollbars on iframe

谁说胖子不能爱 提交于 2020-01-05 10:29:28
问题 Since time immemorial, if you write: <iframe scrolling="yes"></iframe> Then, regardless of the content of the iframe, scroll bars are shown. If, like me, you use iframes a lot to display tabular data - with the table header outside the iframe, it is important to know that the scrollbars will always appear, so you can allow for the width of the scrollbar when making the table headings line up with the columns in the data. So, what do you have to do to get IE 10 to display scroll bars on an

How to get IE 10 to show scrollbars on iframe

你离开我真会死。 提交于 2020-01-05 10:29:22
问题 Since time immemorial, if you write: <iframe scrolling="yes"></iframe> Then, regardless of the content of the iframe, scroll bars are shown. If, like me, you use iframes a lot to display tabular data - with the table header outside the iframe, it is important to know that the scrollbars will always appear, so you can allow for the width of the scrollbar when making the table headings line up with the columns in the data. So, what do you have to do to get IE 10 to display scroll bars on an