gpt4 book ai didi

asp.net - 我是否需要输入控件(如复选框、文本框等)的 View 状态?

转载 作者:行者123 更新时间:2023-12-02 15:46:25 25 4
gpt4 key购买 nike

EnableViewstate = false并且我进行回发时,我的文本框控件保留文本值,但标签控件不保留。我正在更改按钮的单击事件上的标签和文本框的文本。

protected void Button1_Click(object sender, EventArgs e)
{
TextBox1.Text = "Message Changed";
Label1.Text = "Message Changed";
}

我的页面还有另一个按钮用于回发。

此外,如果我不需要此控件的 View 状态,那么是否有所有不需要 View 状态的控件的列表?

最佳答案

所有实现 IPostBackDataHandler 的控件即使 ViewState 关闭,也会加载它们的值。请注意,当 ViewState 被禁用时,诸如 TextChanged 之类的事件和诸如 ForeColor 之类的其他属性将不起作用。

这是实现IPostBackDataHandler的控件列表

  • 复选框
  • 复选框列表
  • 下拉列表
  • HtmlInputCheckBox
  • HtmlInputFile
  • HtmlInput隐藏
  • HtmlInputImage
  • HtmlInputRadioButton
  • HtmlInputText
  • Html选择
  • HtmlTextArea
  • 图像按钮
  • 列表框
  • 单选按钮列表
  • 文本框

Why textbox persists data during postback even if View State set to off

Whenever a page is submitted or posted back to server, the entire form data is posted to the server as a collection with the request. The collection is in the form of NamedValue collection and this collection has the mapping with uniqueid of the control and the value of the control. You can read the data from the form collection by using the following code snippet

//Reading textbox value from the form collection 
string textboxvalue = Request.Form[textbox1.UniqueID];

ASP.NET uses this primitive to update the control’s value. ASP.NET uses IPostBackDataHandler for the controls that load the data from the form collection.

关于asp.net - 我是否需要输入控件(如复选框、文本框等)的 View 状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11969245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com