我有一个小网站,主页显示x2段文字。这些段落填充在包含3个字段(“ID”,“para1”和“para2”)的数据库中的单个记录中。此记录通过包含x2 textareas(分配给更新“para1”和“para2”)的表单更新,允许我输入textarea,单击“更新”,然后主页上的两个段落将更新以反映新的文本。
要从主页导航到包含textareas的表单页面,我单击“admin”链接,将我带到登录页面,输入用户名和密码,然后单击“登录”,这会将我转到“更新” “页面。
我想要的是,x2 textarea输入要预先填充数据库表中“para1”和“para2”字段中存储的数据。这样,如果有人想对主页上的任一段进行小修改,那么他们就不需要从头开始重新输入整个内容。
我在Microsoft Visual Web Developer Express中使用C#Razor。我不仅仅是一个初学者,而是任何形式的开发工作,所以我正在学习,因为我要去,请温柔: - )
以下代码示例:
@model DFAccountancy.Models.Data
@{
ViewBag.Title = "Update";
}
<h2>Update</h2>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"> </script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Data</legend>
<div class="editor-label">
@Html.LabelFor(model => model.para1)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.para1, new { cols = 75, @rows = 5 })
@*@Html.EditorFor(model => model.para1)*@
@Html.ValidationMessageFor(model => model.para1)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.para2)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.para2, new { cols = 75, @rows = 5 })
@*@Html.EditorFor(model => model.para2)*@
@Html.ValidationMessageFor(model => model.para2)
</div>
<p>
<input type="submit" value="Update" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations;
namespace DFAccountancy.Models
{
public class Data
{
[DataType(DataType.MultilineText)]
public int ID { get; set; }
public string para1 { get; set; }
public string para2 { get; set; }
}
public class DataDBContext : DbContext
{
public DbSet<Data> Data { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using DFAccountancy.Models;
namespace DFAccountancy.Controllers
{
public class DataController : Controller
{
private DataDBContext db = new DataDBContext();
//
// GET: /Data/
public ViewResult Index()
{
return View(db.Data.ToList());
}
//
// GET: /Data/Details/5
public ViewResult Details(string id)
{
Data data = db.Data.Find(id);
return View(data);
}
//
// GET: /Data/Update/5
public ActionResult Update()
{
return View();
}
//
// POST: /Data/Update/5
[HttpPost]
public ActionResult Update(Data data)
{
if (ModelState.IsValid)
{
data.ID = 1; //EF need to know which row to update in the database.
db.Entry(data).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index", "Home");
}
return View(data);
}
}
}
答案 0 :(得分:1)
您只需更新Update
方法即可包含传递Id
//
// GET: /Data/Update/5
public ActionResult Update()
{
Data data = db.Data.Find("1");
return View(data);
}
此外,还需要更新指向更新方法的链接以传递该ID。假设您正在使用MVC的标准列表模板。
<td>
@Html.ActionLink("Update", "Update") |
...
</td>