我有这个动作:
[HttpPost]
public ActionResult Test(Test test)
{
...
}
有了这个类:
public class Test
{
public string txtTest { get; set; }
}
一个 html 表单有一个名为txtTest的文本字段,我可以成功调用上面的操作。什么属性名称可以让我这样做:
public class Test
{
[SomeAttribute(Name = "txtTest")]
public string MyTest { get; set; }
}