次の方法で共有


HtmlInputHidden コンストラクタ

HtmlInputHidden クラスの新しいインスタンスを初期化します。

Public Sub New()
[C#]
public HtmlInputHidden();
[C++]
public: HtmlInputHidden();
[JScript]
public function HtmlInputHidden();

解説

このコンストラクタを使用して、 HtmlInputHidden クラスの新しいインスタンスを作成し、初期化します。

HtmlInputHidden のインスタンスの初期プロパティ値を次の表に示します。

プロパティ 初期値
TagName "hidden" リテラル文字列。

使用例

 
<%@ 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 value of 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>
 

[C#] 
<%@ 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 value of 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>
 

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

HtmlInputHidden クラス | HtmlInputHidden メンバ | System.Web.UI.HtmlControls 名前空間