0

我收到此错误

错误:“0x80020101 - Microsoft JScript 运行时错误:由于错误 80020101,无法完成操作。”

函数调用:

var url = '@Url.Action("_PartialView", "Controller")';
url += '/?Id='+@ViewBag.Id+'&param=0';

url 正在根据要求构建,即使部分视图在错误后被加载。

4

1 回答 1

0

为什么要手动附加 ID 和参数?你可以把它们放在一起:

@Url.Action("_PartialView", "Controller", new { Id = ViewBag.Id, param = 0 })';
于 2013-06-25T07:11:08.163 回答