是不是要设置web.config哪里
还有,两个web.config有什么区别
web.config中的<system.web>节点下
<customErrors mode="On" defaultRedirect="~/Error/Error">
<error statusCode="404" redirect="~/Error/NotFound" />
</customErrors>
如上设置应该就可以了
在调用public ActionResult OnLineList(FormCollection collection, int page, int rows)
的时候,出现参数不足引发的错误
中方法“System.Web.Mvc.ActionResult OnLineList(System.Web.Mvc.FormCollection, Int32, Int32)”的不可以为 null 的类型“System.Int32”的参数“page”,参数字典包含一个 null 项。可选参数必须为引用类型、可以为 null 的类型或声明为可选参数。
Parameter name: parameters
这个怎么解决啊
@zhaoyuan: 我不清楚你是如何传递参数的,你试试改一下方法签名:
public ActionResult OnLineList(FormCollection collection, int page=0, int rows=0) { }
@袁家小黑球: 就传了空参数,如果遇到这种异常,怎么处理
@zhaoyuan: 上下文不足,我不能理解,单是这样看是看不出来的,不好意思