I want to open IE browser from chrome for some backward compatibility in application.I am partially successful in it.Now Problem is IE URL contains registry name due to which requested site is not opening.when i click call IE i'm getting "ie.ftp:URL" in IE address bar instead of URL.
<html>
<body>
call IE
</body>
</html>
Related
I noticed this issue occurring in the past few weeks, and never experienced it before. Basically, In Windows, if I set the default Email to Chrome, mailto links no longer work properly. The browser I am using to click on the link produces different results, but none of them work correctly.
Step-by-step, what I'm doing is:
In Windows > Default apps > Email - set to Chrome
In ANY browser, click a mailto URL
Chrome: Nothing happens
Firefox: Opens new, empty Chrome window
If I set the Default Email to use Firefox, the mailto URLs work fine from all browsers.
Here is some HTML code I was able to reproduce the bug in:
<!DOCTYPE html>
<html>
<body>
This is a test.
</body>
</html>
I am inclined to believe this may be a bug between Windows and Chrome, because this only very recently started happening.
Some things I tried include:
Changing Chrome Privacy settings
Other threads suggested Handlers settings in Chrome, which did not solve this
Verify the default program was set correctly (Default Programs > Associate a file type or protocol with a program)
Use window.open instead of href (not that this would be a good solution, but it yielded similar results)
I have ASP.NET Core web application. The view is using iframe to load PDF file from amazon s3.
<iframe style="width:100%;height:100vh" src="https://xxxx.s3-us-west-2.amazonaws.com/mybucket/a_01_03_44_35_5745663485955446.pdf"></iframe>
The above code was working fine until recently.
Now iframe does not show any pdf. When i check network using F12 it shows Protocol and Result/Description as Pending
if copy the URL and paste it into IE 11 directly then browser shows the file.
The above behavior is happening in IE 11 and IE Edge, as usual chrome works fine.
I am not sure if recent windows update has got anything to do with this.
Update 1
I take it back, I cannot open S3 url in IE 11 or IE Edge directly either.
This has nothing to do with ASP.NET Core. Why don't you load the PDF with HttpClient and serve it through a controller. Could also have the benefit that you can cache it if this is frequently requested. Or better use the AWS SDK.
I have the same problem since the begining of 2017/08. The difference is I cannot open the url directly on IE11 and Edge eigther. The F12 network tab also shows both Protocal and Result/Description as Pending. No problem on Chrome, firefox and safari.
Several PCs in our company started having this problem from the same time.
Here is a sample url
(please open this by IE11 on Windows10).
If i clear history of chrome browser and load a page, how's certificate is expired.
So the page is loaded for first time in the browser with expired certificate.
I can click on input box and type text in it, but the cursor is not showing.
The cursor shows if i change the tab or switch to another application and come back to the browser.
This issue observed only for the first load of page without any previous browser history and expired certificate.
If i want to observe this issue again, i have to clean browser history and reload the page or open it into incognito mode.
Issue observed in Chrome browser Version 59.0.3071.115 only.
It is working fine in older versions of Chrome browser.
The code is writing in jsp and running using java eclipse (tomcat).
<html>
<head></head>
<body>
<input>
</body>
</html>
Here is the simple HTML
<html>
<head><head>
<body>
<img src='\\{NETWORK_FILE_SHARE_PATH}\pic_pipeline1.jpg' title='pipePic' height='24' alt='alt-image'/>
</body>
</html>
I view this html file in IE10 and Chrome Version 39.0.2171.65 and I can see the image. But if I open it with FireFox 33.1 all I see are the words "alt-image"
Why is this happening?
Firefox is sandboxing possible malicious content.
If it is not a file:// url, the browser should not allow access to the filesystem for any purpose.
One possible misuse would be to load local images and upload them without your consent.
I recently discovered my vbscript code on an intranet site has been running in IE 8 Compatibility Mode by default because it's on the intranet.
Now the below code works great in IE8 compatibility mode but throws an error if ran in any compatbility mode higher than 8. Help me out please! :) Pretty please?
The error given in IE's developer console is: 'test' is undefined"
Here's the code:
<html>
<head>
<title>Test VBScript Code</title>
</head>
<script language="VBScript">
Sub test
MsgBox "Hello World!"
End Sub
</script>
<body>
<input type="button" value="TEST" onclick="test">
</body>
</html>
IE9 has tighter security and has disabled the running of VBScript in the browser by default.
Here are simple steps to turn on or turn off VBScript in your Internet Explorer:
Follow Tools-> Internet Options from the menu
Select Security tab from the dialog box
Click the Custom Level button
Scroll down till you find Scripting option
Select Enable radio button under Active scripting
Finally click OK and come out
To disable VBScript support in your Internet Explorer, you need to select Disable radio button under Active scripting.