CustomValidator.ControlPropertiesValidとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > CustomValidator.ControlPropertiesValidの意味・解説 

CustomValidator.ControlPropertiesValid メソッド

このメンバは BaseValidator.ControlPropertiesValid をオーバーライドます。
構文構文

Protected Overrides Function
 ControlPropertiesValid As Boolean
Dim returnValue As Boolean

returnValue = Me.ControlPropertiesValid
protected override bool ControlPropertiesValid
 ()
protected:
virtual bool ControlPropertiesValid () override
protected boolean ControlPropertiesValid ()
protected override function ControlPropertiesValid
 () : boolean
バージョン情報バージョン情報
参照参照
関連項目
CustomValidator クラス
CustomValidator メンバ
System.Web.UI.MobileControls 名前空間

CustomValidator.ControlPropertiesValid メソッド

コントロールプロパティ有効なかどうか確認します

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

Protected Overrides Function
 ControlPropertiesValid As Boolean
Dim returnValue As Boolean

returnValue = Me.ControlPropertiesValid
protected override bool ControlPropertiesValid
 ()
protected:
virtual bool ControlPropertiesValid () override
protected boolean ControlPropertiesValid ()
protected override function ControlPropertiesValid
 () : boolean

戻り値
コントロール プロパティ有効な場合trueそれ以外場合false

使用例使用例

カスタム サーバー コントロールControlPropertiesValid メソッドオーバーライドすることにより、CustomValidator コントロールの ControlToValidate プロパティページ上にあり、か検証プロパティ含まれている限りVisible プロパティの値が常に返されるようにする方法次のコード例示します

<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls"
 Assembly="Samples.AspNet.VB"
 %>
<%@ Page Language="VB" AutoEventWireup="True"
 %>
<HTML>
  <HEAD>
    <title>Custom CustomValidator - ControlPropertiesValid - VB.NET Example</title>
    <script runat="server">
      Sub CustomValidator1_ServerValidate(source As
 Object, args As ServerValidateEventArgs)
        args.IsValid = False
        Try
          ' Test whether the value entered into the text box is even
 or not.
          Dim i As Integer
 = Integer.Parse(args.Value)
          If (i Mod 2) = 0 Then
            args.IsValid = True
          End If
        Catch
        End Try
      End Sub
    </script>
  </HEAD>
  <body>
  <form id="Form1" method="post"
 runat="server">
    <h3>Custom CustomValidator - ControlPropertiesValid - VB.NET Example</h3>
    <asp:Label id="Label1" runat="server"
 Text="Enter an even number:" /><BR>
    <asp:TextBox id="TextBox1" runat="server"
 />&nbsp;
    <aspSample:CustomCustomValidatorControlPropertiesValid id="Customvalidator1"
 runat="server" ControlToValidate="TextBox1"
 Display="Static" ErrorMessage="Not an even number!" OnServerValidate="CustomValidator1_ServerValidate"
 /><br><br>
    <asp:Button id="Button1" runat="server"
 Text="Validate" />
  </form>
</body>
</HTML>
<br /><span space="preserve">...</span><br
 />Imports System.Web
Imports System.Security.Permissions

Namespace Samples.AspNet.VB.Controls
    <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)>
 _
    Public NotInheritable Class
 CustomCustomValidatorControlPropertiesValid
        Inherits System.Web.UI.WebControls.CustomValidator

        Protected Overrides Function
 ControlPropertiesValid() As Boolean
            Dim controlToValidate As String
 = Me.ControlToValidate

            ' Determine whether the ControlToValidate is on the page
 
            ' and contains a valid validation property. 
            If controlToValidate.Length > 0 Then
                MyBase.CheckControlValidationProperty(controlToValidate,
 "ControlToValidate")
            End If

            ' If the control is visible, then control is valid 
            ' and is ready for validation.
            Dim control As System.Web.UI.Control
 = Me.FindControl(controlToValidate)
            If control.Visible = True Then
                Return True
            Else
                Return False
            End If
        End Function
    End Class
End Namespace
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet"
 Assembly="Samples.AspNet.CS" %>
<%@ Page Language="C#" AutoEventWireup="True" %>
<HTML>
  <HEAD>
    <title>Custom CustomValidator - ControlPropertiesValid - C# Example</title>
    <script runat="server">
    void CustomValidator1_ServerValidate(Object source, ServerValidateEventArgs
 args) 
    {
      try 
      {
        // Test whether the value entered into the text box is even.
        int i = int.Parse(args.Value);
        args.IsValid = ((i%2) == 0);
      }
      catch(Exception ex)
      {
        args.IsValid = false;
      }
    }
    </script>
  </HEAD>
<body>
  <form id="Form1" method="post" runat="server">
    <h3>Custom CustomValidator - ControlPropertiesValid - C# Example</h3>
    
    <asp:Label id="Label1" runat="server" Text="Enter
 an even number:" /><BR>
    
    <asp:TextBox id="TextBox1" runat="server" />&nbsp;
    
    <aspSample:CustomCustomValidatorControlPropertiesValid 
      id="Customvalidator1" 
      runat="server" 
      ControlToValidate="TextBox1" 
      Display="Static" 
      ErrorMessage="Not an even number!" 
      OnServerValidate="CustomValidator1_ServerValidate" /><br><br>
    
    <asp:Button id="Button1" runat="server" Text="Validate"
 />
  </form>
</body>
</HTML>
<br /><span space="preserve">...</span><br />using
 System.Web;
using System.Security.Permissions;

namespace Samples.AspNet
{
    [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)]
    public sealed class CustomCustomValidatorControlPropertiesValid
 : System.Web.UI.WebControls.CustomValidator
    {
        protected override bool ControlPropertiesValid()
        {
            string controlToValidate = this.ControlToValidate;

            // Determine whether the ControlToValidate is on the page
 
            // and contains a valid validation property. 
            if (controlToValidate.Length > 0) 
            {
            base.CheckControlValidationProperty(controlToValidate,
 "ControlToValidate");
            }

            // If the control is visible, then control is valid 
            // and is ready for validation.
            System.Web.UI.Control control = this.FindControl(controlToValidate);
            return control.Visible;
        }
    }
}
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet"
 Assembly="Samples.AspNet.JSL" %>
<%@ Page Language="VJ#" AutoEventWireup="True" %>
<HTML>
  <HEAD>
    <title>Custom CustomValidator - ControlPropertiesValid - VJ# Example</title>
    <script runat="server">
    void CustomValidator1_ServerValidate(Object source, 
        ServerValidateEventArgs args) 
    {
        try {
            // Test whether the value entered into the text box is even.
            int i = Int32.Parse(args.get_Value());
            args.set_IsValid((i%2) == 0);
        }
        catch(Exception ex) {
            args.set_IsValid(false);
        }
    } //CustomValidator1_ServerValidate
    </script>
  </HEAD>
<body>
  <form id="Form1" method="post" runat="server">
    <h3>Custom CustomValidator - ControlPropertiesValid - VJ# Example</h3>
    
    <asp:Label id="Label1" runat="server" Text="Enter
 an even number:" /><BR>
    
    <asp:TextBox id="TextBox1" runat="server" />&nbsp;
    
    <aspSample:CustomCustomValidatorControlPropertiesValid 
      id="Customvalidator1" 
      runat="server" 
      ControlToValidate="TextBox1" 
      Display="Static" 
      ErrorMessage="Not an even number!" 
      OnServerValidate="CustomValidator1_ServerValidate" /><br><br>
    
    <asp:Button id="Button1" runat="server" Text="Validate"
 />
  </form>
</body>
</HTML>
<br /><span space="preserve">...</span><br />package
 Samples.AspNet;

public class CustomCustomValidatorControlPropertiesValid
    extends System.Web.UI.WebControls.CustomValidator
{
    protected boolean ControlPropertiesValid()
    {
        String controlToValidate = this.get_ControlToValidate();
        // Determine whether the ControlToValidate is on the page 
        // and contains a valid validation property. 
        if (controlToValidate.get_Length() > 0) {
            super.CheckControlValidationProperty(controlToValidate,
                "ControlToValidate");
        }
        // If the control is visible, then control is valid 
        // and is ready for validation.
        System.Web.UI.Control control = this.FindControl(controlToValidate);
        return control.get_Visible();
    } //ControlPropertiesValid
} //CustomCustomValidatorControlPropertiesValid
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CustomValidator クラス
CustomValidator メンバ
System.Web.UI.WebControls 名前空間


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

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

辞書ショートカット

すべての辞書の索引

「CustomValidator.ControlPropertiesValid」の関連用語

CustomValidator.ControlPropertiesValidのお隣キーワード
検索ランキング

   

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



CustomValidator.ControlPropertiesValidのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS