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.
如何使用剃刀语法根据用户权限或 mvc4 应用程序中的角色禁用或灰显编辑或保存按钮。用户将看到该按钮,但无法单击或选择 MVC4 中的按钮。如何检查 MVC4 Razor 中的验证?
您可以使用 if 条件
@if(yourConditionIsTrue) { <input type="submit" disabled="disabled" value="Edit" /> }
或一些三元运算符
<button type="submit" @((yourCondition==true) ? "disabled" : "")>EditPage</button>