PowerTools InputMan for ASP.NET 8.0J
ForbiddenList プロパティ
使用例 

検証するコントロールに入力を禁止するテキストの配列を取得または設定します。
構文
Public Property ForbiddenList As String()
public string[] ForbiddenList {get; set;}

プロパティ値

既定値:String.Empty
解説
ForbiddenListプロパティは、検証する入力コントロールにユーザーの入力を禁止する文字列を配列で指定します。

英字の大文字、小文字は区別されます。
使用例
次のサンプルコードは、禁止文字列検証コントロールの使用例を示します。
GcForbiddenTextValidator1.ForbiddenList = New String() {"select", "update", "delete", "insert"}
GcForbiddenTextValidator1.ErrorMessage = "入力が禁止されている文字列が含まれています。"
GcForbiddenTextValidator1.ControlToValidate = "GcTextBox1"
GcForbiddenTextValidator1.ForbiddenList = new String[] {"select", "update", "delete", "insert"};
GcForbiddenTextValidator1.ErrorMessage = "入力が禁止されている文字列が含まれています。";
GcForbiddenTextValidator1.ControlToValidate = "GcTextBox1";
参照

GcForbiddenTextValidator クラス
GcForbiddenTextValidator メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.