我正在使用MVC3和C#開發多租戶應用程序。 我正在使用帶驗證屬性裝飾的屬性的模型類。 我想要做的是在客戶端和服務器端返回特定於租戶的錯誤消息。MVC 3多租戶應用程序驗證屬性錯誤消息
有沒有什麼辦法可以在運行時爲每個請求掛接mvc驗證和呈現/返回租戶特定消息?
我的代碼片斷是非常sipmle:
型號:
public class TestModel
{
[Required(ErrorMessageResourceName="errormessage", ErrorMessageResourceType=typeof(Global)]
[RegularExpression(@"\d+", ErrorMessageResourceName="errormessagedigit", ErrorMessageResourceType=typeof(Global)]
public string TestProperty {get; set;}
}
查看:
@using(Html.BeginFrom())
{
@Html.ValidationSummary(false, "")<br/>
@Html.TextBoxFor(x => x.TextProperty)<br />
<input type="submit" value="submit" />
}
格式使用工具欄的代碼。 – jgauffin