View Single Post
  #21 (permalink)  
Old 08-05-2003, 08:06 PM
codepunk
Pupil
Join Date: Apr 2003
Posts: 10
Default 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
 
Reply With Quote