Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用
modelstate.Adderror("test","test message")
以及如何在控制器本身中获取此模型状态值。
就像我需要在控制器中获取“测试”的错误消息。
他在控制器中要求,我无法验证这一点,但我认为这很简单:
ModelState["test"].Value ModelState["test"].Error ModelState["test"]
以上之一。
试试<%=Html.ValidationMessage("Test") %>。
<%=Html.ValidationMessage("Test") %>