在手机中判断WEB或WAP访问
string types=Request.ServerVariables["HTTP_ACCEPT"].ToLower ().ToString ();
if (types .IndexOf ("text/vnd.wap.wml")>0)
{
Response.Redirect("index.aspx");
}
else
{
Response.Redirect("index1.aspx");
}
if (types .IndexOf ("text/vnd.wap.wml")>0)
{
Response.Redirect("index.aspx");
}
else
{
Response.Redirect("index1.aspx");
}