我想将会话中的一个变量设置为空
Session["my_variable"] = null;
我尝试过这样的 OnUnload
protected override void OnUnload(EventArgs e)
{
base.OnUnload(e);
Session["my_variable"] = null;
}
但它不能正常工作,它会在用户在页面上时设置变量,但我想将其设置为 null whet is leave page