在 ASP.NET 中,ViewState 因为在客户端的 HTML 里占据大量的空间,并随着页面的 PostBack 反复传递于网络中,一直为人垢病。但是实际上 ViewState 可以存储到数据库、缓存等任意地方,从而避免频繁将冗长的 base64 字符串发送到客户端。这样做不但可以显著提高性能(大幅度减少了网络传输的字节数),而且如果其中的内容也不会被轻易解密和破解。因此这个方法是很有用处的。 代码大致演示如下: <%@ Page language=”c#” Codebehind=”SaveViewStateToOther.aspx.cs” AutoEventWireup=”false” Inherits=”LinkedList.SaveViewStateToOther” %> <itemstyle forecolor=”#003399″ backcolor=”White”> <headerstyle font-bold=”True” forecolor=”#CCCCFF” backcolor=”#003399″> <footerstyle forecolor=”#003399″ backcolor=”#99CCCC”> <pagerstyle horizontalalign=”Left” forecolor=”#003399″ backcolor=”#99CCCC” pagebuttoncount=”20″ mode=”NumericPages”> </form> using System; namespace LinkedList private void Page_Load(object sender, EventArgs e) private void Bind() for (int i = 0; i < 1000; i++) #region Web 窗体设计器生成的代码 protected override void OnInit(EventArgs e) private void InitializeComponent() } #endregion protected override void SavePageStateToPersistenceMedium(object viewState) object v = Cache[PageKey]; public string PageKey protected override object LoadPageStateFromPersistenceMedium() private void DataGrid1_PageIndexChanged(object source, DataGridPageChangedEventArgs e) 出处:木野狐 BLOG
以下写了一个简单的例子,用缓存来作为 ViewState 存储目的地。至于缓存的 Key,文中给出的只是一个简单的写法,具体可以根据情况给出严密的方案。
<!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“>
</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>
</HeaderStyle>
</FooterStyle>
</PagerStyle>
</asp:DataGrid>
</body>
</html>
using System.Data;
using System.IO;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
{
/// <summary>
/// SaveViewStateToOther 的摘要说明。
/// </summary>
public class SaveViewStateToOther : Page
{
protected DataGrid DataGrid1;
{
if (!IsPostBack)
Bind();
}
{
DataTable table = new DataTable();
table.Columns.Add(“id”, typeof (int));
table.Columns.Add(“name”, typeof (string));
{
DataRow row = table.NewRow();
row[“id”] = i;
row[“name”] = “student_” + i.ToString();
table.Rows.Add(row);
}
DataGrid1.DataSource = table;
DataGrid1.DataBind();
}
{
InitializeComponent();
base.OnInit(e);
}
{
this.DataGrid1.PageIndexChanged += new System.Web.UI.WebControls.DataGridPageChangedEventHandler(this.DataGrid1_PageIndexChanged);
this.Load += new System.EventHandler(this.Page_Load);
{
LosFormatter format = new LosFormatter();
StringWriter writer = new StringWriter();
format.Serialize(writer, viewState);
string vsRaw = writer.ToString();
byte[] buffer = Convert.FromBase64String(vsRaw);
string vsText = Encoding.ASCII.GetString(buffer);
if (v == null)
Cache.Insert(PageKey, vsText);
else
Cache[PageKey] = vsText;
}
{
get { return Session.SessionID + “_page_SaveViewStateToOther_aspx”; }
}
{
object s = Cache[PageKey];
if (s != null)
{
string state = s.ToString();
byte[] buffer = Encoding.ASCII.GetBytes(state);
string vsRaw = Convert.ToBase64String(buffer);
LosFormatter formatter = new LosFormatter();
return formatter.Deserialize(vsRaw);
}
return null;
}
{
DataGrid1.CurrentPageIndex = e.NewPageIndex;
Bind();
}
}
}
对于实际的应用,如果要决定在整个程序中应用此方案,则使用一个通用的页面基类,在其中实现此机制比较合适。
asp.net小技巧:重写viewstate的存储目的地,以提高页面性能_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net小技巧:重写viewstate的存储目的地,以提高页面性能_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧