开发者

session variable asp.net

How I can Clean the session variable, which h开发者_Python百科old file path while load the asp page(AddFiles.aspx) first time only?


if (!IsPostback)
{
   Session["FilePath"] = null;
}


You can check for the PostBack:

if (!IsPostBack)
{
    Session["yourSessionName"] = "";
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜