zoukankan      html  css  js  c++  java
  • 去掉ASP。NET页面中的VIEWSTATE非存硬盘方法

    //作者:king2003 QQ:41347614
    using System;
    using System.IO;
    using System.Text;
    using System.Web;
    using System.Web.UI;

    public class clViewStateMng
    {
        private LosFormatter _formatter = null;
        private byte _VIEWSTATE_NUM_PAGES;
        private enumSaveType _VIEWSTATE_SAVE_TYPE;
        private HttpContext ohttpcontext = null;
        private static clViewStateMng ovs = null;
        public string VIEWSTATE_FIELD_NAME;
        private const string VIEWSTATE_PAGE_COUNT = "_lngVIEWSTATE";
        private const string VIEWSTATE_SESSION_OBJ = "_objVIEWSTATE";
        private string[] ViewStates;

        private string GetViewState(long lreqNo)
        {
            if (this._VIEWSTATE_NUM_PAGES < 1)
            {
                return null;
            }
            short index = (short)(lreqNo % ((long)this._VIEWSTATE_NUM_PAGES));
            if (this.ohttpcontext.Session["_objVIEWSTATE"] == null)
            {
                return null;
            }
            this.ViewStates = (string[])this.ohttpcontext.Session["_objVIEWSTATE"];
            string str = null;
            string str2 = lreqNo.ToString();
            if (str2 == this.ViewStates[index].Substring(0, str2.Length))
            {
                str = this.ViewStates[index].Substring(str2.Length);
            }
            return str;
        }

        public static clViewStateMng GetViewStateMng()
        {
            if (ovs == null)
            {
                ovs = new clViewStateMng();
                ovs._VIEWSTATE_SAVE_TYPE = enumSaveType.Session;
                ovs.VIEWSTATE_FIELD_NAME = "__VIEWSTATE_KEY";
                ovs._VIEWSTATE_NUM_PAGES = Convert.ToByte(5);
            }
            ovs.ohttpcontext = HttpContext.Current;
            return ovs;
        }

        public object LoadViewState()
        {
            string input = null;
            if (this._formatter == null)
            {
                this._formatter = new LosFormatter();
            }
            input = this.GetViewState(this.RequestNumber);

            if (input != null)
            {
                return this._formatter.Deserialize(input);
            }
            return null;
        }

        public void SaveViewState(object viewState, ref long reqNumber)
        {

            if (this._formatter == null)
            {
                this._formatter = new LosFormatter();
            }
            StringBuilder sb = new StringBuilder();
            StringWriter output = new StringWriter(sb);
            this._formatter.Serialize(output, viewState);
            reqNumber = this.SetViewState(sb.ToString());

        }

        private long SetViewState(string szViewState)
        {
            if (this._VIEWSTATE_NUM_PAGES < 1)
            {
                return 0L;
            }
            this.ohttpcontext.Session["_lngVIEWSTATE"] = (this.ohttpcontext.Session["_lngVIEWSTATE"] == null) ? 0L : (((long)this.ohttpcontext.Session["_lngVIEWSTATE"]) + 1L);
            long num = (long)this.ohttpcontext.Session["_lngVIEWSTATE"];
            short index = (short)(num % ((long)this._VIEWSTATE_NUM_PAGES));
            if (this.ohttpcontext.Session["_objVIEWSTATE"] == null)
            {
                this.ViewStates = new string[this._VIEWSTATE_NUM_PAGES];
                this.ohttpcontext.Session["_objVIEWSTATE"] = this.ViewStates;
            }
            else
            {
                this.ViewStates = (string[])this.ohttpcontext.Session["_objVIEWSTATE"];
            }
            this.ViewStates[index] = num.ToString() + szViewState;
            return num;
        }

        private long RequestNumber
        {
            get
            {
                long num = 0L;

                if (this.ohttpcontext.Request.Form[this.VIEWSTATE_FIELD_NAME] != null)
                {
                    num = Convert.ToInt64(this.ohttpcontext.Request.Form[this.VIEWSTATE_FIELD_NAME]);
                }

                return num;
            }
        }

        public enumSaveType SaveType
        {
            get
            {
                return this._VIEWSTATE_SAVE_TYPE;
            }
        }

        public enum enumSaveType
        {
            Page,
            Session
        }
    }


    使用方法:
        protected override object LoadPageStateFromPersistenceMedium()
        {

                clViewStateMng viewStateMng = clViewStateMng.GetViewStateMng();
                return viewStateMng.LoadViewState();
        }

        protected override void SavePageStateToPersistenceMedium(object viewState)
        {

                clViewStateMng viewStateMng = clViewStateMng.GetViewStateMng();

                    long num=0;
                    viewStateMng.SaveViewState(viewState, ref num);
                    this.RegisterHiddenField(viewStateMng.VIEWSTATE_FIELD_NAME, num.ToString());
       
        }
  • 相关阅读:
    mysql替代like模糊查询的方法
    8个超实用的jQuery插件应用
    判断登陆设备是否为手机
    SQL tp3.2 批量更新 saveAll
    SQL-批量插入和批量更新
    防止手机端底部导航被搜索框顶起
    php COM
    thinkphp3.2 where 条件查询 复查的查询语句
    Form表单提交,js验证
    jupyter notebook 使用cmd命令窗口打开
  • 原文地址:https://www.cnblogs.com/yeye518/p/2231675.html
Copyright © 2011-2022 走看看