Thread
:
Mobile Device Re-Direct Code
View Single Post
#
21
(
permalink
)
08-05-2003, 08:06 PM
codepunk
Pupil
Join Date: Apr 2003
Posts: 10
ASP.NET
The ASP.NET version (C#) is this:
if( Request.Browser("IsMobileDevice") == true )
{
Response.Redirect( "MobilePage.aspx");
}
Although I've read something somewhere that this messes up search engine crawlers.
-Mark Schmidt
codepunk
View Public Profile
Visit codepunk's homepage!
Find all posts by codepunk