页面清空缓存的具体方法
页面清空缓存的方法。来源互联网 protected void Page_Load(object sender, EventArgs e) { Response.Cache.SetNoStore(); if (!Page.IsPostBack) { InitPage(); } }
下载地址
用户评论