asp.net - How do I get rid of the IE8 ssl warning message "Do you want to view only the webpage content that was delivered securely?” with ScriptManager? -
A login page on our asp.net website uses https - while all our other pages do not make this login page However, IE8 users "Are you just delivering webpage content safely?" Want to receive messages. Many people say "yes" out of habit that breaks our login page. I know that the problem arises from WebResource.axd and ScriptResource.axd script tags which are generated by ScriptManager.
I have tried every method to refer to ScriptResource.axd / WebResource.axd - but no matter what I do, the same IE8 warning - get some examples:
< Code> & lt; Script src = 'https: //www.mysite.org/ScriptResource.axd? 123 'type = "text / javascript" & gt; & Lt; / Script & gt; & Lt; Script src = '/ScriptResource.axd?123' type = "text / javascript" & gt; & Lt; / Script & gt; & Lt; Script src = '//www.mysite.org/ScriptResource.axd?123' type = "text / javascript" & gt; & Lt; / Script & gt; & Lt; Script src = '../ScriptResource.axd?123' type = "text / javascript" & gt; & Lt; / Script & gt;
Here's another one. Is an example of.
Thinking that there may be some weird redirection in iis for AID files - I have tried to respond too. Application_BeginRequest with Safe URL in Global.asax has no effect.
What script does the trigger by the script manager that is generated by the Script Manager Resource.axd / WebResource.axd script that does not trigger "Do you want to see only the webpage that is securely Was given? "IE8 message? Thanks!
Looking for traffic, request for HTTM for some https scriptResource.axd requests. I do not know about any settings specific to this ScriptResourceHandler, and I know that we use MS AJAX scripts at all times for https without problems. I will temporarily have to see if any of the Application_BeginRequest handlers continue to redirect.
Comments
Post a Comment