Chrome on iOS shows weird url for jQuery Mobile page (ASP.NET MVC)

前端 未结 3 741
旧巷少年郎
旧巷少年郎 2020-12-18 08:57

I have a jQuery Mobile page that works ok in Safari on iPhone (iOS 5+). And when clicking at this link...

@Html.ActionLink(\"Click to download\", \"Download\         


        
3条回答
  •  情歌与酒
    2020-12-18 09:10

    I realize this is an older post, but..

    I believe this is a bug with the newest release of chrome iOS v 30.0.1599

    As Daren stated this is the .net framework using the URL to hold the authentication data that otherwise would be in the auth cookie. This is called cookieeless session.

    .net should not be interpreting the user agent as one that does not support cookies.

    I added testing Request.Browser.Cookies to my login page and am seeing this version of chrome showing as false. This is certainly a bug in the chrome release. This seems to only happen after some post backs and will not resolve itself even with clearing the cookies and data and cashe the content settings.

    The only way to solve is uninstalling chrome and using Safari. I am using ios7.

    I would live to know how to resolve this but currently we are advising our clients who use iOS chrome to not update or use Safari and uninstall....

    Mark

提交回复
热议问题