1 回答

TA貢獻(xiàn)1942條經(jīng)驗 獲得超3個贊
事實上,您已經(jīng)定義了2 個嵌套形式:第一個使用Html.BeginForm()(這已經(jīng)將其中的任何內(nèi)容包裝在 和 之間<form>)</form>,然后使用和標(biāo)簽手動定義了另一個形式。<form></form>
在 HTML 中嵌套表單是非法的。最好省略手動創(chuàng)建的<form>,將其更改為:
@using (Html.BeginForm("Category", "Category", FormMethod.Post))
{
<label id="CategoryDescriptionLabel">Description</label>
<input id="CategoryDescription" type="text" name="categoryDescription" />
<input type="button" value="submit" id="submitBtn" data-toggle="modal" data-target="#confirm-submit" />
}
id要為生成的定義<form>,您可以使用以下命令:
@using (Html.BeginForm("Category", "Category", FormMethod.Post, new { id = "bla" }))
{
...
}
- 1 回答
- 0 關(guān)注
- 144 瀏覽
添加回答
舉報