internet-explorer-8

How can I programatically get internet traffic from a web site in C# or C++?

Deadly 提交于 2019-12-12 06:17:25
问题 How do I programatically get internet traffic from a web site in C# or C++? I mean, how can this be done without opening up a browser or a broswer control? Additionally, there is some sort of plugin to a browser in IE and others where you can watch the communication from a browser to a server and back. Does anyone know about this? 回答1: If you are looking for programmaticaly requesting web pages then you might check httpwebrequest in C#. Additionally, there is some sort of plugin to a browser

JSP load taking more than 12 seconds

好久不见. 提交于 2019-12-12 06:14:59
问题 I have JSP which takes more than 12 seconds to load. It works fine on IE11. It includes 6 other jsps within. I am trying to analyze what is causing longer load time for parent jsp. Does included JSPs are compiled every time parent JSP is being loaded? Each JSP and parent JSP has some functions defined in script tag. Are these functions compiled on server? And if compiled does browser render this JS functions everytime on load? Improvement steps: Include all JS functions in JS script and

IE 8: background-size fix with -ms-filter

做~自己de王妃 提交于 2019-12-12 05:33:43
问题 I found the same problem on Stackoverflow and a fix was posted: https://stackoverflow.com/a/9169401/1107123 I can make it work, but as soon I'm using it with PHP it does not. Any ideas? I also looked at this: https://stackoverflow.com/a/10147089/1107123 But I have no idea how to implement it. The documentation is very vague :/ This does not work: (Inside PHP) echo "<div style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img.gif',sizingMethod='scale'); -ms-filter: progid

Java Applet is not working in IE8

十年热恋 提交于 2019-12-12 05:11:56
问题 Java Applet is not working in Internet explorer 8. It just shown blank screen. Maybe because of security restriction in IE8. Is there any fix to this problem? 回答1: Did you try reinstalling Java? After reinstalling Java if Internet Explorer asks if you want to enable the Java addon, be sure to click the Enable button. If you go to Internet Explorer->Tools->Options->Programs->Manage Addons (then Select in the combobox Show All Addons) is the "Java Plug-In SSV Helper" and "Java Plug-In 2 SSV

Problems with adding an event on a google maps v3 in IE8 using bind(this)

笑着哭i 提交于 2019-12-12 04:57:23
问题 This code below works fine in Chrome and IE 9. But breaks in IE 8. The errant line is here. I think it's the bind. google.maps.event.addListener(this.map, "click", (this.leftClick).bind(this)); Has anyone else had this problem? It's not clear if someone has this on SO. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <style> html, body, #map { margin: 0; padding: 0;

Not able to load xml file in IE8

折月煮酒 提交于 2019-12-12 04:49:43
问题 I'm trying to find the solution to load xml file and retrieve element value by tag name but stuck at the final step. Code is working in all other modern browsers except IE8 . function getXML(xmlStr) { if (window.DOMParser) { alert("window.DOMParser"); return (new window.DOMParser()).parseFromString(xmlStr, "text/xml"); } else if (typeof window.ActiveXObject != "undefined" && new window.ActiveXObject("Microsoft.XMLDOM")) { alert("Microsoft.XMLDOM"); var xmlDoc = new window.ActiveXObject(

ASPX page renders differently when reached on intranet vs. internet?

流过昼夜 提交于 2019-12-12 04:49:22
问题 This is so odd to me.. I have IIS 5 running on XP and it's hosting a small ASP.Net app for our LAN that we can access by using the computer name, virtual directory, and page name (http://matt/smallapp/customers.aspx), but you can also hit that IIS server and page from the internet because I have a public IP that my firewall routes to the "Matt" computer (like http://213.202.3.88/smallapp/customers.aspx [just a made-up IP]). Don't worry, I have Windows domain authentication is in place to

javascript form field submit : Object doesn't support this property or method in IE8

妖精的绣舞 提交于 2019-12-12 04:14:37
问题 i'm getting following error in IE8 Object doesn't support this property or method i'm getting this error on following line fieldName.form.action = 'some action url'; i have alerted fieldName like following alert(typeof(fieldName)); it alerts 'Object' anyone have any idea about this? 回答1: solved the problem by replacing following line fieldName.form.action = 'some action url'; to fieldName.form.setAttribute('action','some url'); got answer from here 回答2: Try this code document.form_name.action

jQuery causing 'missing' text in IE?

狂风中的少年 提交于 2019-12-12 04:03:58
问题 Really weird issue I've come across now. I'm using jQuery to make some 'widget' windows (drag & resize). They work beautifully in everything but IE (big surprise, right?). They also do everything they're supposed to in IE (drag, resize, dim on moving, return to proper opacity on release). However, in IE, when you 'let go' of the window the text 'disappears'. This isn't the traditional 'click drag over it and it's visible' bugs. Text goes completely transparent, taking on whatever colour is

Table Disobeys W3C Box Model, Ie8 Ignores Fixed Table Width !

我的未来我决定 提交于 2019-12-12 03:27:21
问题 I'm having hard time with tables and column widths. Update: I'm using XHTML Strict 1.0. The page is: http://www.pro-turk.net/try The first problem I have is, I have a column with a fixed width of 100px and 4px padding, but it disobeys my padding depending on the value. The column width (as the distance between two borders according to W3C Box Model) is 156 px even if padding is 0 or 4. Only the position of the text changes. According to W3C Box Model ( available at www.pro-turk.net/box_model