asp.net mvc 3 - Weird string being prepended in IE10 -


i encountered obscure bug ever.

this string being pre-pended before every css/js url served local directory

(f(fzrx2f3_lkjzmbhxhfgtqzvrp_nz_3hbclibtnvycxxpicjuby7pefkf4wlgbltcqsrw4wpk19ymbr_hjddznnkynoxux5bf2de9fsiubvztega8hzzjd_lntx9byykqgqyom0vpwpcf8myhbpwwbs38mffzotsl01xntzxlyx9b4axn_e9qgmlmanjlwd_00))

only in ie 10 here screenshot of header of page

i'm ruining on asp.net mvc 3 stack.

the weird thing resources load thing prefix

in web.config make sure not using cookieless forms authentication:

<authentication mode="forms">   <forms loginurl="~/account/logon" timeout="2880" cookieless="usecookies" /> </authentication> 

setting cookieless="usecookies" ensures cookies used , users won't tracked prepending ticket in url. iirc there bug in older versions of .net ie10 user agent wasn't known , framework assumes doesn't support cookies.

and if using asp.net session same stands true (you should force use cookies):

<sessionstate mode="inproc" cookieless="usecookies" /> 

Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -