嗨,我必须用 ado.net 和 asp.net mvc 4 创建一个小项目。我现在必须将数据插入数据库,如果我能弄清楚如何访问发布的数据。
这是我的代码:
public ActionResult AddBook()
{
return View(books);
}
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<label for="BookName">Book Name:</label><input type="text" name="BookName" />
<label for="Author">Author:</label><input type="text" name="Author" />
<label for="Description">Book Name:</label><input type="text" name="BookName" />
<label>Choose category:</label>
<select>
@foreach (DataRow row in Model.Categories.Rows) {
<option value="@row["Id"]">@row["CategoryName"]</option>
}
</select>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
如何访问发布的数据?