9

我有一个 MVC4/Web API 项目,我创建了一个使用 Ajax 使用 Web API 的测试页面。测试进展顺利,所以我开始研究 UI。我需要做的一件事是使用从 Web API 返回的数据填充一些表单控件。我为此使用了 JQuery。

现在,当我运行应用程序并提交表单时,我收到一个错误,表明页面已更新:

Invalid postback or callback argument.  Event validation is enabled using <pages
enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %>
in a page.  For security purposes, this feature verifies that arguments to postback 
or callback events originate from the server control that originally rendered them.  
If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation
method in order to register the postback or callback data for validation.

为了克服这个问题,我将表单控件包装在 UpdatePanel 中并添加了 ScriptManager 控件。现在我在构建时收到以下错误:

The type or namespace name 'ScriptManager' does not exist in the namespace 
'System.Web.UI' (are you missing an assembly reference?) C:\Users\xxx\Documents\
Visual Studio 2012\Projects\xxxxxxxxx\xxxxxxxx.Web.API\Public\
xxxxxxxxxxx.aspx.designer.cs    31  41  xxxxxxxx.Web.API

The type or namespace name 'UpdatePanel' does not exist in the namespace 
'System.Web.UI' (are you missing an assembly reference?)    C:\Users\xxx\Documents\
Visual Studio 2012\Projects\xxxxxxxx\xxxxxxxx.Web.API\Public\
xxxxxxxxxxx.aspx.designer.cs    40  41  xxxxxxxx.Web.API

我已经完全清理了我的解决方案。删除了 obj/Debug 和 obj/Release。我已经研究了这两个问题,它们似乎是齐头并进的,会出现很多问题。我已经安装了 AjaxControlToolbox,但这并没有什么不同。

有什么我必须手动添加到 web.config 或者我应该寻找的东西吗?

4

5 回答 5

27

添加对程序集System.Web.Extensions的引用。选择项目-> 添加引用,然后选择程序集名称。

于 2016-06-20T08:52:59.100 回答
5

我理解为什么 Garrison 会指出 MVC/Web 表单的区别。我的 MVC 站点上有一些 .aspx 页面,仅用于测试。

但是通过将我的项目的目标框架设置为 3.5,然后再次将其更改回 4.0,我的问题得到了解决。

于 2013-10-02T02:13:01.523 回答
4

对我来说,当我复制/粘贴ScriptManagerandUpdatePanel块时,就会出现这个问题。项目模板中没有预先包含该Systems.Web.Extensions参考,仅复制/粘贴不会自动添加参考。添加引用消除了错误。

我正在使用.Net 3.5。我没有安装任何其他框架,所以这种解决了我的问题。

于 2016-01-18T00:50:02.347 回答
4

对我来说,问题是设计师生成了一行System.Web.UI.WebControls.ScriptManager而不是System.Web.UI.ScriptManager,我认为这是因为我id在它不需要的时候给了它一个属性。

于 2017-10-05T22:13:02.083 回答
4

只需添加行

<%@ Register TagPrefix="asp" Namespace="System.Web.UI" Assembly="System.Web"%>

在 .aspx 文件中并重建!

于 2016-02-03T08:46:15.693 回答