Basic Sample – How To Keep ASP.NET ViewState On The Server

來源:互聯網
上載者:User
Ref: ArticleDuring recent few engagements with my customers I've noticed  VIewState is extensively [unintentionally] used. ViewState is on by default. The result is heavy weight Html that round trips on the network. This causes slow response time and high network utilization that affects another applications using the same network.

How to remove ViewState from the network completely while taking an advantage if its functionality at same time?

This post walks through basic steps of creating ASP.NET Base Page that implements functionality allowing saving ViewState on the server. The approach reduces dramatically network utilization.

Summary of steps

  • Step 1 - Create Visual Studio Solution.
  • Step 2 - Implement Base Page
  • Step 3 - Inherit Each ASPX page from Custom Base Page
  • Step 4 - Test The Solution

The following section describes each step in details.

  • Step 1 - Create Visual Studio Solution.  Open Visual Studio 2008 and create empty solution, found under "Visual Studio Solutions". Name it BasePageSample. In Solution explorer right click the solution and add new project. Choose "ASP.NET Web Application" under Web node in "Add new Project" dialog. Name it SampleWebToUseExternalBasePage. Right click the solution in Solution Explorer and add new project. Choose "Class Library" under Windows node. Name it MyBasePage. In MyBasePage project add reference to System.Web assembly. Right click MyBasePage project and add new class, name it LeaveViewStateOnTheServer.cs.
  • Step 2 - Implement Base Page.  While in LeaveViewStateOnTheServer class add using declarations and inherit from Page type:
    using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Web.UI;using System.Web;

    namespace MyBasePage{    class LeaveViewStateOnTheServer : Page    {    }}

    Override two relevant methods that handle Loading and Saving of ViewState:

    protected override object LoadPageStateFromPersistenceMedium(){    object viewStateBag;    string m_viewState = (string)Session["ViewState"];    LosFormatter m_formatter = new LosFormatter();    try    {        viewStateBag = m_formatter.Deserialize(m_viewState);    }    catch    {        throw new HttpException("The View State is invalid.");    }    return viewStateBag;}protected override void SavePageStateToPersistenceMedium(object viewState){    MemoryStream ms = new MemoryStream();    LosFormatter m_formatter = new LosFormatter();    m_formatter.Serialize(ms, viewState);    ms.Position = 0;    StreamReader sr = new StreamReader(ms);    string viewStateString = sr.ReadToEnd();    Session["ViewState"] = viewStateString;    ms.Close();    return;}

    This is a basic code that can be adopted and adapted to specific needs. The code mostly based on Dino Esposito's code.

  • Step 3 - Inherit Each ASPX page from Custom Base Page. Right click SampleWebToUseExternalBasePage project and reference to MyBasePage project. Right click SampleWebToUseExternalBasePage project and add new ASPX page, name it default.aspx. Open default.aspx.cs code behind and inherit the page from custom Base Page:
    using MyBasePage;namespace SampleWebToUseExternalBasePage{    public partial class _Default : LeaveViewStateOnTheServer
  • Step 4 - Test The Solution. Add any control to the page from the toolbox. GridView uses ViewState the most. Here is how rendered Html For GridView looks with default ViewState behavior:

    And here is how it looks without:

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.