日期:2014-05-17 浏览次数:20363 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Error : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
throw new HttpException(404, System.Net.HttpStatusCode.NotFound.ToString(),456);
}
}