去掉.net页面中的input type=hidden name=__VIEWSTATE id=__VIEWSTATE.doc

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
// 添加引用
using System.IO;
using System.Threading;
namespace CCL
{
  /// <summary>
  /// BasePage 的摘要说明
  /// </summary>
  public class BasePage : System.Web.UI.Page
  {
    #region 解决ViewState 过于庞大的问题
    // 由于这里添加了目录, 所以要建立App_Data/ViewState 目录.
    protected override object LoadPageStateFromPersistenceMedium()
    {
      string viewStateID = ( string )((Pair) base .LoadPageStateFromPersistenceMedium()).Second;
      string stateStr = ( string )Cache[viewStateID];
      if (stateStr == null )
       {
        string fn = Path.Combine( this .Request.PhysicalApplicationPath, @"App_Data/ViewState/" + viewStateID);
        stateStr = File.ReadAllText(fn);
      }
      return new ObjectStateFormatter().Deserialize(stateStr);
    }


    protected override void SavePageStateToPersistenceMedium( object state)
    {
      string value = new ObjectStateFormatter().Serialize(state);
      string viewStateID = (DateTime.Now.Ticks + ( long ) this .GetHashCode()).ToString(); // 产生离散的id 号码
      string fn = Path.Combine( this .Request.PhysicalApplicationPath, @"App_Data/ViewState/" + viewStateID);
      //ThreadPool.QueueUserWorkItem(File.WriteAllText(fn, value));
      File.WriteAllText(fn, value);
      Cache.Insert(viewStateID, value);
      base .SavePageStateToPersistenceMedium(viewStateID);
    }
    #endregion
  }
}


不使用Session ,因为它会“ 丢失” 。ViewState 保存在磁盘上,即使服务器重新启动,也不会丢失页面状态。


下面这段可以放在Global.asax 中,也可以根本不管:
C# code


protected void Application_Start(object sender, EventArgs e)
{
  DirectoryInfo dir = new DirectoryInfo (this .Server.MapPath("~/App_Data/ViewState/" ));
  if (!dir.Exists)
    dir.Create();
  else
  {
    DateTime nt = DateTime .Now.AddHours(-1);
    foreach (FileInfo file in dir.GetFiles())
    {
      if (file.CreationTime < nt)
        file.Delete();
    }
  }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值