noshitsherlock
noshitsherlock

Reputation: 1153

IE 11 broke all our sites

When Microsoft rolled out IE 11 on the automatic updates it broke all our sites.

For example, one of our sites started getting a weird string in the URL. After the '/' the following gets added.

(F(IZOtnSYyVIaxfgEbqezGvIKHeTq8scRxJzvlSVK2airuqpB29zOonBkpv3_Lf61u7hveLZH053qcPgI6cTpejnOWojBJBiePNrC1Z7lShzsKs7VdayYOlA9dF_vIodMiRbUCzDRHbf9UlxsYNbuo_UabOT81))

And because of this nothing on the site works.

Adding the site to Compatibility View in IE 11 works. But what has Microsoft done with IE 11 that destroys everything?

Is there anyway to fix this without having to add the site to Compatibility view?

Upvotes: 0

Views: 1031

Answers (2)

Irina Bogomaz
Irina Bogomaz

Reputation: 36

Try install last windows updates. It helped us this the same situation.

Upvotes: 1

fejesjoco
fejesjoco

Reputation: 11903

What you see is a forms authentication ticket, sent in the url, instead of a cookie. ASP.NET thinks that you are using an unknown browser that cannot handle cookies, JavaScript, etc. You should update your browser definition files. A similar issue has actually happened with IE10, not 11: http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx

Or, as a workaround for this one case only, modify your web.config and force forms to use cookies. But it won't solve all your problems.

Upvotes: 3

Related Questions