Always allow popups and redirection from https://

patrick

Well-known member
Joined
Dec 5, 2021
Messages
255
Programming Experience
1-3
In ASP.NET ,,,

Always allow popups and redirects from https://.....

How to program in ASP.NET Code?
20230629_093425.jpg
 
You can't change this from the server side; it's for the user to choose

삭제1.png



Development Environment : ASP.NET, Internet Edge

Will the following solve the problem?


In the enterprise mode site list add the allow-redirect rule.

Internet Explorer (IE) mode troubleshooting and FAQ | Microsoft Docs

Why aren't pop-ups or redirected websites loading in IE mode or in Internet Explorer 11?​

After configuring IE mode, certain websites, especially those sites that create a new window or a site that gets redirected may not render in IE mode or open in Internet Explorer 11.

For this kind of redirected website, you can make use of the allow-redirect="true" in the site list configuration. For more information, see Updated schema elements.

allow-redirectA boolean attribute of the <open-in> element that controls the behavior for redirected sites. Setting this attribute to "true" indicates that the site will open in IE11 or Microsoft Edge even if the site is navigated to as part of a HTTP or meta refresh redirection chain. Omitting the attribute is equivalent to "false" (sites in redirect chain will not open in another browser).
Example<site url="contoso.com/travel">
<open-in allow-redirect="true">IE11 </open-in>
</site>
 
Last edited:
That setting you are referring to is managed by your intranet admin. It is not controlled by each individual running web app. Imagine if it was: then everyone would re-enable popups all the time and you'd get spammed by popup ads again like in the past.
 
Back
Top Bottom