Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all,
Iam working on a website and Im trying to view the same website using my apple ipad using google chrome.But in Ipad there is an option Request Desktop site if i enable it all is doing well.But Iam not enable it,some events are not firing example asp.net calendar events.My question is
Is it possible to enable request desktop site always for my website......???????


Thanks,
Posted

When you enable "Request Desktop Site" all the browser does is change the user agent string provided as part of the request header.

If you website has a different behaviour when this is enabled it's because your website or its components are designed change behaviour for mobile devices.

So look at your website and it's components and try and disable the behaviour.

Default user agent:

Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_1_1 like Mac OS X; en-gb)
AppleWebKit/534.46.0 (KHTML, like Gecko)
CriOS/19.0.1084.60 Mobile/9B206 Safari/7534.48.3


Request Desktop user agent:

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3)
AppleWebKit/534.53.11 (KHTML, like Gecko)
Version/5.1.3 Safari/534.53.10


That's the only different from the user end point perspective. Everything else the behaviour of the website.
 
Share this answer
 
Hope these will help you
Check it out
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900