.NET MVC强类型参数排除和包含

MVC接收强类型对象时排除或只接收某几个属性使用Bind特性

1 只接收几个属性:Bind(Include="属性1,属性2,属性3,...")
2 排除某几个属性:Bind(Exclude="属性1,属性2,属性3,...")

例子:

public ActionResult Login([Bind(Include="UserName,UserPwd")]UserInfo user)
{
     return View();  
}

 

posted on 2019-07-03 08:54  党鹏飞  阅读(223)  评论(0编辑  收藏  举报

导航