Latest web development tutorials

ASP.NET HtmlInputHidden Controls

HTML Server Controls HTML server controls

Definition and Usage

HtmlInputHidden control is used to control the <input type = "hidden"> elements. In HTML, the element is used to create a hidden input field.


Properties and events

属性 描述
Attributes 返回该元素的所有属性名称和值对。
Disabled 布尔值,指示是否禁用该控件。默认是 false。
id 元素的唯一 id。
Name 元素的名称。
runat 规定该控件是一个服务器控件。必须被设置为 "server"。
Style 设置或返回被应用到该控件的 CSS 属性。
TagName 返回元素的标签名。
Type 元素的类型。
Value 隐藏域的值。
Visible 布尔值,指示该控件是否可见。

事件 描述
ServerChange 当该元素的内容被更改时发生此事件。


Examples

HTMLInputHidden
In this example, we declare in an .aspx file a HtmlInputHidden control, a HtmlInputText control, a HtmlInputButton control, and one HtmlGeneric control (remember to control nested HtmlForm control). When the submit button is triggered, the submit subroutine. Setting the value of this subroutine will submit the hidden field value input field, and displays the value of the hidden field in the p element.


HTML Server Controls HTML server controls