I've checked various related questions already posted about detecting mobile devices for websites, but my method is a bit different to anything i've seen and wanted to know if anyone can see any issues with it.
What I'm doing is...
I have a httpmodule that does a server.transfer(); to a blank html page on the first request of a user visit.
On this blank html page is some javascript that detects the viewport width/height and touch capability. The js then saves this info to a client cookie and then redirects (via window.location) to the originally requested page.
When the httpmodule gets hit again, it reads the viewport and touch screen details from the client cookie. If touch is available or the viewport width is less than say 480px then the httpmodule will redirect (via Response.Redirect()) to the mobile version of the website.
Is there any stumbling block I will likely encounter by doing this?
I should note that the tablet version of the site is the same as the mobile, which is why I want to redirect to this version if touch is available.
Aristosandjim68000answers for you to think about a different approach. I personally don't like the idea redirecting all clients to a blank test page - this test can be done on the requested page and only redirect if necessary. – EdSF Jun 6 '12 at 14:10