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

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

HtmlInputCheckBox.OnPreRender メソッド

OnPreRender イベント発生させ、コントロールポストバック処理が必要なコントロールとして登録します

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

Protected Friend Overrides
 Sub OnPreRender ( _
    e As EventArgs _
)
Dim e As EventArgs

Me.OnPreRender(e)
protected internal override void OnPreRender
 (
    EventArgs e
)
protected public:
virtual void OnPreRender (
    EventArgs^ e
) override
protected void OnPreRender (
    EventArgs e
)
protected internal override function
 OnPreRender (
    e : EventArgs
)

パラメータ

e

イベント データ格納している EventArgs。

解説解説

OnPreRender メソッドは、OnPreRender 基本メソッドオーバーライドます。OnPreRender は、主に、コントロール開発者使用します

使用例使用例

カスタム サーバー コントロールOnPreRender メソッドオーバーライドし、各 HtmlInputCheckBox コントロールTitle 属性追加されるようにする方法次のコード例示します

<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls"
 Assembly="Samples.AspNet.VB"
 %>
<%@ Page Language="VB" AutoEventWireup="True"
 %>
<HTML>
  <HEAD>
    <title>Custom HtmlInputCheckBox - OnPreRender - Visual Basic Example</title>
    <script runat=server>
      Sub Button1_Click(sender As Object,
 e As EventArgs)
        Div1.InnerHtml = ""

        If HtmlInputCheckBox1.Checked = True
 Then
            Div1.InnerHtml = "You like basketball. "
        End If

        If HtmlInputCheckBox2.Checked = True
 Then
            Div1.InnerHtml += "You like football. "
        End If

        If HtmlInputCheckBox3.Checked = True
 Then
            Div1.InnerHtml += "You like soccer. "
        End If
      End Sub

    </script>
  </HEAD>
  <body>
    <form id="Form1" method="post"
 runat="server">
      <h3>Custom HtmlInputCheckBox - OnPreRender - Visual Basic Example</h3>
      <P>
      Enter Interests:<br>
      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox1"
        runat="server"
        type="checkbox" checked
        value="Basketball"> Basketball

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox2"
        runat="server"
        type="checkbox"
        value="Football"> Football

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox3"
        runat="server"
        type="checkbox"
        value="Soccer"> Soccer
      </P>
      <P>
      <input id="Button1"
        runat="server"
        type="button"
        value="Enter"
        OnServerClick="Button1_Click"
        name="Button1">
      </P>

      <P>
      <DIV id="Div1" runat="server"
        style="DISPLAY: inline; WIDTH: 256px; HEIGHT: 15px"
        ms_positioning="FlowLayout" />
      </P>
    </form>
  </body>
</HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls"
 Assembly="Samples.AspNet.CS" %>
<%@ Page Language="C#" AutoEventWireup="True" %>
<HTML>
  <HEAD>
    <title>Custom HtmlInputCheckBox - OnPreRender - C# Example</title>
    <script runat=server>
      void Button1_Click(Object sender, EventArgs e)
      {
        Div1.InnerHtml = "";

        if(HtmlInputCheckBox1.Checked == true)
        {
          Div1.InnerHtml = "You like basketball. ";
        }

        if(HtmlInputCheckBox2.Checked == true)
        {
          Div1.InnerHtml += "You like football. ";
        }

        if(HtmlInputCheckBox3.Checked == true)
        {
          Div1.InnerHtml += "You like soccer. ";
        }
      }
    </script>
  </HEAD>
  <body>
    <form id="Form1" method="post" runat="server">
      <h3>Custom HtmlInputCheckBox - OnPreRender - C# Example</h3>
      <P>
      Enter Interests:<br>
      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox1"
        runat="server"
        type="checkbox" checked
        value="Basketball"> Basketball

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox2"
        runat="server"
        type="checkbox"
        value="Football"> Football

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox3"
        runat="server"
        type="checkbox"
        value="Soccer"> Soccer
      </P>
      <P>
      <input id="Button1"
        runat="server"
        type="button"
        value="Enter"
        OnServerClick="Button1_Click"
        name="Button1">
      </P>

      <P>
      <DIV id="Div1" runat="server"
        style="DISPLAY: inline; WIDTH: 256px; HEIGHT: 15px"
        ms_positioning="FlowLayout" />
      </P>
    </form>
  </body>
</HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.JSL.Controls"
 Assembly="Samples.AspNet.JSL" %>
<%@ Page Language="VJ#" AutoEventWireup="True" %>
<HTML>
  <HEAD>
    <title>Custom HtmlInputCheckBox - OnPreRender - C# Example</title>
    <script runat=server>
    void Button1_Click(Object sender, EventArgs e)
    {
        Div1.set_InnerHtml("");
        if(HtmlInputCheckBox1.get_Checked() == true)
 {
            Div1.set_InnerHtml("You like basketball. ");
        }
        if(HtmlInputCheckBox2.get_Checked() == true)
 {
            Div1.set_InnerHtml(Div1.get_InnerHtml() + "You like football. ");
        }
        if(HtmlInputCheckBox3.get_Checked() == true)
 {
            Div1.set_InnerHtml(Div1.get_InnerHtml() + "You like soccer. ");
        }
    } //Button1_Click
    </script>
  </HEAD>
  <body>
    <form id="Form1" method="post" runat="server">
      <h3>Custom HtmlInputCheckBox - OnPreRender - VJ# Example</h3>
      <P>
      Enter Interests:<br>
      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox1"
        runat="server"
        type="checkbox" checked
        value="Basketball"> Basketball

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox2"
        runat="server"
        type="checkbox"
        value="Football"> Football

      <aspSample:CustomHtmlInputCheckBoxOnPreRender
        id="HtmlInputCheckBox3"
        runat="server"
        type="checkbox"
        value="Soccer"> Soccer
      </P>
      <P>
      <input id="Button1"
        runat="server"
        type="button"
        value="Enter"
        OnServerClick="Button1_Click"
        name="Button1">
      </P>

      <P>
      <DIV id="Div1" runat="server"
        style="DISPLAY: inline; WIDTH: 256px; HEIGHT: 15px"
        ms_positioning="FlowLayout" />
      </P>
    </form>
  </body>
</HTML>
Imports System.Web
Imports System.Security.Permissions

Namespace Samples.AspNet.VB.Controls

    <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)>
 _
    Public NotInheritable Class
 CustomHtmlInputCheckBoxOnPreRender
        Inherits System.Web.UI.HtmlControls.HtmlInputCheckBox

        Protected Overrides Sub
 OnPreRender(ByVal e As System.EventArgs)

            ' Call the base class's OnPreRender method.
            MyBase.OnPreRender(e)

            ' Add a Title attribute to each HtmlInputCheckBox.
            Me.Attributes.Add("title",
 "If you like " + Me.Value + ",
 then select this check box.")
        End Sub
    End Class

End Namespace
using System.Web;
using System.Security.Permissions;

namespace Samples.AspNet.CS.Controls
{
    [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)]
    public sealed class CustomHtmlInputCheckBoxOnPreRender
 : System.Web.UI.HtmlControls.HtmlInputCheckBox
    {
        protected override void OnPreRender(System.EventArgs
 e)
        {
            // Call the base class's OnPreRender method.
            base.OnPreRender(e);
            
            // Add a Title attribute to each HtmlInputCheckBox.
            this.Attributes.Add("title", "If you
 like " + this.Value + ", then select this
 check box.");
        }
    }
}
package Samples.AspNet.JSL.Controls;

public class CustomHtmlInputCheckBoxOnPreRender
    extends System.Web.UI.HtmlControls.HtmlInputCheckBox
{
    protected void OnPreRender(System.EventArgs
 e)
    {
        // Call the base class's OnPreRender method.
        super.OnPreRender(e);
        // Add a Title attribute to each HtmlInputCheckBox.
        this.get_Attributes().Add("title", "If
 you like " 
            + this.get_Value() + ", then select this
 check box.");
    } //OnPreRender
} //CustomHtmlInputCheckBoxOnPreRender
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からHtmlInputCheckBox.OnPreRender メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からHtmlInputCheckBox.OnPreRender メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からHtmlInputCheckBox.OnPreRender メソッド を検索

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

辞書ショートカット

すべての辞書の索引

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

   

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



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

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

©2025 GRAS Group, Inc.RSS