ClientScriptManager.RegisterHiddenField メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ClientScriptManager.RegisterHiddenField メソッドの意味・解説 

ClientScriptManager.RegisterHiddenField メソッド

メモ : このメソッドは、.NET Framework version 2.0新しく追加されたものです。

隠し値を Page オブジェクト登録します

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Sub RegisterHiddenField ( _
    hiddenFieldName As String, _
    hiddenFieldInitialValue As String _
)
Dim instance As ClientScriptManager
Dim hiddenFieldName As String
Dim hiddenFieldInitialValue As String

instance.RegisterHiddenField(hiddenFieldName, hiddenFieldInitialValue)
public void RegisterHiddenField (
    string hiddenFieldName,
    string hiddenFieldInitialValue
)
public:
void RegisterHiddenField (
    String^ hiddenFieldName, 
    String^ hiddenFieldInitialValue
)
public void RegisterHiddenField (
    String hiddenFieldName, 
    String hiddenFieldInitialValue
)
public function RegisterHiddenField (
    hiddenFieldName : String, 
    hiddenFieldInitialValue : String
)

パラメータ

hiddenFieldName

登録する隠しフィールドの名前。

hiddenFieldInitialValue

登録するフィールド初期値

解説解説

RegisterHiddenField メソッドは、レンダリングされた HTML ページ上に隠し <input> 要素作成します

使用例使用例

RegisterArrayDeclaration メソッドRegisterHiddenField メソッド使用方法を示すコード例次に示します。この例では、配列隠し値を登録し配列2 つの値と隠し値の合計計算する <input> ボタンOnClick イベント定義します

<%@ Page Language="VB" %>

<script runat="server">

  Protected Sub Page_Load(ByVal
 sender As Object, ByVal
 e As System.EventArgs)

    ' Define the array name and values.
    Dim arrName As String
 = "MyArray"
    Dim arrValue As String
 = """1"", ""2"",
 ""text"""
    
    ' Define the hidden field name and initial value.
    Dim hiddenName As String
 = "MyHiddenField"
    Dim hiddenValue As String
 = "3"
    
    ' Define script name and type.
    Dim csname As String
 = "ConcatScript"
    Dim cstype As Type = Me.GetType()
        
    ' Get a ClientScriptManager reference from the Page class.
    Dim cs As ClientScriptManager = Page.ClientScript

    ' Register the array with the Page class.
    cs.RegisterArrayDeclaration(arrName, arrValue)
    
    ' Register the hidden field with the Page class.
    cs.RegisterHiddenField(hiddenName, hiddenValue)

    ' Check to see if the  script is already registered.
    If (Not cs.IsClientScriptBlockRegistered(cstype,
 csname)) Then
      Dim cstext As StringBuilder = New
 StringBuilder()
      cstext.Append("<script type=text/javascript> function
 DoClick() {")
      cstext.Append("Form1.Message.value='Sum = ' + ")
      cstext.Append("(parseInt(" + arrName + "[0])+")
      cstext.Append("parseInt(" + arrName + "[1])+")
      cstext.Append("parseInt(" + Form1.Name + "."
 + hiddenName + ".value));} </")
      cstext.Append("script>")
      cs.RegisterClientScriptBlock(cstype, csname, cstext.ToString(), False)
    End If
    
  End Sub
  
</script>

<html>
  <head>
    <title>ClientScriptManager Example</title>
  </head>
  <body>
     <form    id="Form1"
            runat="server">
     <input type="text"
            id="Message" />
     <input type="button" 
            onclick="DoClick()" 
            value="Run Script">
     </form>
  </body>
</html>
<%@ Page Language="C#"%>

<script runat="server">
 
  public void Page_Load(Object sender, EventArgs
 e)
  {
    // Define the array name and values.
    String arrName = "MyArray";
    String arrValue = "\"1\", \"2\", \"text\"";
    
    // Define the hidden field name and initial value.
    String hiddenName = "MyHiddenField";
    String hiddenValue = "3";
    
    // Define script name and type.
    String csname = "ConcatScript";
    Type cstype = this.GetType();
        
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;

    // Register the array with the Page class.
    cs.RegisterArrayDeclaration(arrName, arrValue);

    // Register the hidden field with the Page class.
    cs.RegisterHiddenField(hiddenName, hiddenValue);

    // Check to see if the  script is already registered.
    if (!cs.IsClientScriptBlockRegistered(cstype, csname))
    {
      StringBuilder cstext = new StringBuilder();
      cstext.Append("<script type=text/javascript> function DoClick()
 {");
      cstext.Append("Form1.Message.value='Sum = ' + ");
      cstext.Append("(parseInt(" + arrName + "[0])+");
      cstext.Append("parseInt(" + arrName + "[1])+");
      cstext.Append("parseInt(" + Form1.Name + "." + hiddenName
 + ".value));} </");
      cstext.Append("script>");
      cs.RegisterClientScriptBlock(cstype, csname, cstext.ToString(), false);
    }
  }
</script>
<html>
  <head>
    <title>ClientScriptManager Example</title>
  </head>
  <body>
     <form    id="Form1"
            runat="server">
     <input type="text"
            id="Message" />
     <input type="button" 
            onclick="DoClick()" 
            value="Run Script">
     </form>
  </body>
</html>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ClientScriptManager クラス
ClientScriptManager メンバ
System.Web.UI 名前空間
HiddenField



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

ClientScriptManager.RegisterHiddenField メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ClientScriptManager.RegisterHiddenField メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS