Html.BeginForm("AddCustomer_sp", "WC_AddCustomer", new {id="from" })
我要写上from表单的 id属性 我这样写不对啊 生成的html
<form action="/WC_AddCustomer/AddCustomer_sp?name=from" method="post">
实际我要的是<form action="/WC_AddCustomer/AddCustomer_sp" id="from" method="post">
没多少分了 大侠们别介意 都提问用完了 呵呵
Html.BeginForm("AddCustomer_sp", "WC_AddCustomer", "POST", new { id="from" })
不行啊
@s_p: "POST"改成 FormMethod.Post
@水牛刀刀: 恩 谢谢了 可以了!
new { @id = "from" }
不行啊
@s_p: @using (Html.BeginForm("Action名称", "Controller名称", FormMethod.Post, new { @id = "form" })) 我测试了是可以的。 你再试试看吧- -
@wenthink: 恩 谢谢了 可以了!
谢谢!刚好想问这个问题