私はmvc3でサイトを構築しています(そして新しい構文が大好きです!)。定数を使用してメール機能を作成しています。しかし、私はそれでパブリックプロパティ/定数を使用することについて途方に暮れています。WebFormsを使用すると、コードビハインドにパブリックプロパティを追加できることを知っています。しかし、私はこれを行うのに苦労しています。
public const string ImportantNoticeForEmployers =
@"<span style=""font-size:12px;line-height:1.5"">" +
@"<b>Important Notice for Employers<b><br><br>" +
@"The Information on xxxxxxxxxxx<br><br>" +
@"</span>";
private const string EmployerDisclaimer =
@"<span style=""font- size:13px;font-family:arial,sans serif;line-height: 1.5"">" +
@"<b>::Disclaimer::</b><br><br> " +
@"By your positive acts of registering on xxxxxx.Login details are required to delete the account)" +
@"</span";
このプライベートメソッドをパブリックメソッドごとに呼び出す必要があります。誰かが私にこれを手伝ってくれる?前もって感謝します。