快速业务通道

ASP.NET重写ViewState的存储目的地,以提高页面性能

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-21

在 ASP.NET 中,ViewState 因为在客户端的 HTML 里占据大量的空间,并随 着页面的 PostBack 反复传递于网络中,一直为人垢病。但是实际上 ViewState 可以存储到数据库、缓存等任意地方,从而避免频繁将冗长的 base64 字符串发 送到客户端。这样做不但可以显著提高性能(大幅度减少了网络传输的字节数) ,而且如果其中的内容也不会被轻易解密和破解。因此这个方法是很有用处的。

以下写了一个简单的例子,用缓存来作为 ViewState 存储目的地。至于 缓存的 Key,文中给出的只是一个简单的写法,具体可以根据情况给出严密的方 案。

代码大致演示如下:

<%@ Page language="c#" Codebehind="SaveViewStateToOther.aspx.cs" AutoEventWireup="false" Inherits="LinkedList.SaveViewStateToOther" %>
<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
 <head>
   <title>SaveViewStateToOther</title>
  <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  <meta name="CODE_LANGUAGE" Content="C#">
  <meta name=vs_defaultClientScript content="JavaScript">
   <meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">< br /> </head>
 <body MS_POSITIONING="GridLayout">
  <form id="Form1" method="post" runat="server"><asp:DataGrid id=DataGrid1 style="Z-INDEX: 101; LEFT: 104px; POSITION: absolute; TOP: 72px" runat="server" BorderColor="#3366CC" BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4" PageSize="6" AllowPaging="True">
<selecteditemstyle font-bold="True" forecolor="#CCFF99" backcolor="#009999">
</SelectedItemStyle>

<itemstyle forecolor="#003399" backcolor="White">
</ItemStyle>

<headerstyle font- bold="True" forecolor="#CCCCFF" backcolor="#003399">
</HeaderStyle>

<footerstyle forecolor="#003399" backcolor="#99CCCC">
</FooterStyle>

<pagerstyle horizontalalign="Left" forecolor="#003399" backcolor="#99CCCC" pagebuttoncount="20" mode="NumericPages">
</PagerStyle>
</asp:DataGrid>

   </form>
 </body>
</html>

using System;
using System.Data;
using System.IO;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace LinkedList
{
  /// <summary>
  /// SaveViewStateToOther 的摘要说明 。
  /// </summary>
  public class SaveViewStateToOther : Page
  {
    protected DataGrid DataGrid1;

    private void Page_Load(object sender, EventArgs e)
    {
      if (!IsPostBack)
         Bind();
    }

    private void Bind()
    {
      DataTable table = new DataTable();
      table.

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号