HtmlInputHidden コンストラクタ
アセンブリ: System.Web (system.web.dll 内)



HtmlInputHidden コントロールの新しいインスタンスを作成して Web ページに配置する方法を次のコード例に示します。
<%@ Page Language="VB" AutoEventWireup="True" %> <html> <script runat="server" > Sub Page_Load(sender As Object, e As EventArgs) ' Create a new HtmlInputHidden control. Dim hidden As HtmlInputHidden = New HtmlInputHidden() hidden.ID = "HiddenValue" hidden.Value = "Hidden Text" ' Add the control to the Controls collection of the ' PlaceHolder control. Place.Controls.Add(hidden) ' Display the value of the HtmlInputHidden control. Message.InnerHtml = _ "This page contains an HtmlInputHidden control that contains " & _ "the value """ & _ (CType(Place.FindControl("HiddenValue"), HtmlInputHidden)).Value _ & """" End Sub </script> <body> <form runat="server"> <h3> HtmlInputHidden Constructor Example </h3> <asp:PlaceHolder id="Place" runat="server"/> <h5> <span id="Message" runat="server"> </span> </h5> </form> </body> </html>
<%@ Page Language="C#" AutoEventWireup="True" %> <html> <script runat="server" > void Page_Load(Object sender, EventArgs e) { // Create a new HtmlInputHidden control. HtmlInputHidden hidden = new HtmlInputHidden(); hidden.ID = "HiddenValue"; hidden.Value = "Hidden Text"; // Add the control to the Controls collection of the // PlaceHolder control. Place.Controls.Add(hidden); // Display the value of the HtmlInputHidden control. Message.InnerHtml = "This page contains an HtmlInputHidden control that contains " + "the value \"" + ((HtmlInputHidden)Place.FindControl("HiddenValue")).Value + "\""; } </script> <body> <form runat="server"> <h3> HtmlInputHidden Constructor Example </h3> <asp:PlaceHolder id="Place" runat="server"/> <h5> <span id="Message" runat="server"> </span> </h5> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- HtmlInputHidden コンストラクタのページへのリンク