发布网友 发布时间:2022-04-22 20:39
共1个回答
热心网友 时间:2023-06-25 00:36
可以利用Session来完成这个功能。
MainPage.aspx的代码
void Page_Load(object sender, EventArgs e)
{
bool isDereference = !Object.ReferenceEquals(Session["IsDereference"], null) && ((bool)Session["IsDereference"])
if(isDereference) Session.Remove("IsDereference");
else throw new Exception("无法访问当前页!");
}