using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (HttpContext.Current.Request.UserAgent.IndexOf("iPhone") > -1 || HttpContext.Current.Request.UserAgent.IndexOf("iPod") > -1) { HttpContext.Current.Response.Redirect("/i/"); } else { HttpContext.Current.Response.Redirect("/web/"); } } }