|
分類:[ASP.NET (C#)]
メッセージを一箇所で管理したいので、以下のようなクラスを作成しています。
public static class MsgClass { public static string MSG_ログインエラー = "パスワード/ユーザIDが間違っています。"; }
こんな感じでエラーチェックの時のメッセージとして 利用しようと思ったのですが、メッセージがブランクとなります。
<asp:CustomValidator id="CustomValidator1" runat="Server" ControlToValidate="userIdTextBox" EnableClientScript="False" OnServerValidate="customValid_ServerValidate" ErrorMessage="<% =MsgClass.MSG_ログインエラー %>" ForeColor="Red" Text="*" />
解決方はあるのでしょうか?
よろしくお願い致します
|