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"];
      
  • 相关阅读:
    Ckeditor事件绑定
    Linux使用netstat命令查看并发连接数
    memcached 常用命令及使用说明
    Linux(Ubuntu)下面SecureCRT 完全破解
    Linux下用SCP无需输入密码传输文件
    Java的URL类(一)
    java编码与解码(一)
    IDEA破解
    linux查看日志文件命令
    springboot +mybatis 搭建完整项目
  • 原文地址:https://www.cnblogs.com/sandy_liao/p/1908837.html
Copyright © 2011-2022 走看看