zoukankan      html  css  js  c++  java
  • ViewState

    Each control on a Web Forms page, including the page itself, has a ViewState property that it inherits from the base Control class. View state is used by the ASP.NET page framework to automatically save the values of the page and of each control just prior to rendering to the page. When the page is posted, one of the first tasks performed by page processing is to restore view state.

    You can use the ViewState property to save your values independent of control state between round trips to the server. The ViewState property is stored in the page in a hidden form field.

    Note   In order to use the ViewState property, your form must have a server form element (
    <form runat="server">
    ). For usage recommendations, see State Management Recommendations.

    To store information in view state

    • Create and store a new element in the ViewState property.
      Note   The data must be in a format compatible with view state. For example, to store a dataset in view state, you should first convert it to a string representation.
      ' Visual Basic
      ViewState("color") = "yellow"
      
      // C#
      ViewState["color"] = "red";
      

    To retrieve information from view state

    • Get the value of an element by specifying its name. Cast the object in view state to the type that you need it to be.

      The following example shows how you can retrieve a value stored earlier under the ViewState name "color." Note that the value is cast to a string.

      ' Visual Basic
      Dim strColor as String
      strColor = CStr(ViewState("color"))
      
      // C#
      string strColor;
      strColor =(string)ViewState["color"];
      
  • 相关阅读:
    001_jdk配置
    mysql(5.7)安装教程
    mysql(5.6)安装教程
    外网发布
    蓝桥 历届试题 分考场
    蓝桥 历届试题 合根植物
    Codeforces Round #650 (Div. 3) D : Task On The Board
    HDU 3336 Count the string
    leetcode [238. 除自身以外数组的乘积]
    leetcode [837. 新21点]
  • 原文地址:https://www.cnblogs.com/sandy_liao/p/1908837.html
Copyright © 2011-2022 走看看