我有一个使用助手@model MyNamespace.Customer
创建的表单定义的字符串类型视图。Html.BeginForm( "NewCustomer", "CustomerReg", FormMethod.Post )
我的 CustomerRegController 控制器上的 NewCustomer 操作看起来像
[HttpPost]
public ViewResult NewCustomer( MyNamespace.Customer objCustomer )
我正在从页面上的模型绑定字段“填充”客户字段的一部分。
当我提交时,我进入了正确的操作,但 objCustomer 都是初始值。我虽然可以通过这种方式传递强类型数据;难道我做错了什么?