MVC传值问题

publicActionResultEdit(intid){Models.MVCbdDataContextmydb=newModels.MVCbdDataContext(... public ActionResult Edit(int id)
{
Models.MVCbdDataContext mydb = new Models.MVCbdDataContext();
Models.GOODS obj = mydb.GOODS.Single(p => p.Gid == id);
return View(obj);
}
[HttpPost]
public ActionResult Edit(Models.GOODS newobj)
{
try
{
//加载数据库要修改的某条现有记录
Models.MVCbdDataContext mydb = new Models.MVCbdDataContext();
Models.GOODS ccobj = mydb.GOODS.Single(p => p.Gid == newobj.Gid);
ccobj.Gname = newobj.Gname;
ccobj.Gimage = newobj.Gimage;
ccobj.Explain = newobj.Explain;
mydb.SubmitChanges();
Response.Redirect("/Postnatal/Edit");

}
修改不了 数据库的值
类型“System.Int32”的参数“id”,参数字典包含一个 null 项。可选参数必须为引用类型、可以为 null 的
不想用因为数据库的id是int 所以public ActionResult Edit(int id)不能改为public ActionResult Edit(string id) 有什么办法可以解决吗 谢谢
展开
 我来答
tgghfbf
2013-07-26 · TA获得超过381个赞
知道小有建树答主
回答量:272
采纳率:50%
帮助的人:203万
展开全部
明显是路由匹配不对啊。
追问
是路由为NULL public ActionResult Edit(int id)   id=1就可以了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式