开发者

Changing web content based on browser type

I'm writing a web application and I'd like to work out what type of browser/OS the request is coming from, and customise the returned content accordingly. So if someone visits the site from an iPhone/Android, they get a more streamlined experience, or if it's a desktop, they get the full version. I will pretty much take a completely different path, rather than try to mix the content together.

What is the recommended approach for this in ASP.NET/IIS and PHP? Is there 开发者_如何学Pythona single place I can catch incoming HTTP requests, make a decision, then redirect? Or is this usually done on a page by page case? Any gotchas I should look out for?

Edit: A good point was made to make sure there is a link to the full version on the reduced version. That's a good point, but raises the problem that once the user make this choice, all future redirections now have to point to the full version. I'd really rather be doing all of this in one place.

Cheers,

Shane


ASP.NET has a built-in browser detection mechanism. It's driven by a fully extensible collection of XML files (*.browser) that contain regular expressions for matching the incoming User-Agent string and associated properties for the matched agents.

You can access the properties from the Request.Browser object; you can also tag control properties based on browser specifics.

There's a bunch of info on the Web about this -- I also cover it in detail in my book: Ultra-Fast ASP.NET.


Not a direct answer but it's worth checking out CSS media types. You can specify the handheld type to streamline the page for phones and other small screened devices.

http://www.w3.org/TR/CSS21/media.html


You could take a look at the UserAgent header in the HTTP request and redirect accordingly.

In PHP that would be $_SERVER['HTTP_USER_AGENT'].

You should however watch out that you don't write a lot of duplicate code when doing this.


For ASP.NET applications you can check out the Global.asax file and Session_BeginRequest event.


You should probably look at Conditional Comments:

http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜