62,242
社区成员




string idStr = Request.QueryString["id"];
int id = 0;
if (int.TryParse(idStr, out id))
{
if (id > 1000)
{
Response.Redirect("a.html");
}
else
{
Response.Redirect("b.html");
}
}