私はこのアクションを持っています:
[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; }
}