System.Web.Extensions 的用途是什么?

发布于 2024-08-21 19:00:13 字数 298 浏览 4 评论 0原文

默认情况下,ASP.NET 3.5 Web App 项目引用程序集 System.Data.DataSetExtensions.dll 和 System.Web.Extensions.dll。

使用 System.Data.DataSetExtensions 一切对我来说都很清楚,它包含诸如 DataTable.AsEnumerable() 和 DataTable.CopyToDataTable() 等有用的扩展方法>。

那么System.Web.Extensions.dll呢?您可以提到哪些有用的成员可以使用?

By default ASP.NET 3.5 Web App project has references to assemblies System.Data.DataSetExtensions.dll and System.Web.Extensions.dll.

With System.Data.DataSetExtensions everything is clear for me, it contains such useful extension methods as DataTable.AsEnumerable() and DataTable.CopyToDataTable().

And what about System.Web.Extensions.dll? What useful members could you mention to use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

鸩远一方 2024-08-28 19:00:13

System.Web.Extensions 与 System.Data.DataSetExtensions 等扩展方法不同,它包含 ASP.NET AJAX 框架。

System.Web.Extensions is not about extension methods like System.Data.DataSetExtensions, it contains the ASP.NET AJAX Framework.

回忆凄美了谁 2024-08-28 19:00:13

System.Web.Extensions 包含 ASP.NET AJAX 控件的所有类和支持类。它还包括用于 JSON 序列化的类以及涉及从 JavaScript 与 ASP.NET 运行时通信的几乎所有其他内容(反之亦然)。

System.Web.Extensions contains all the classes and support classes for ASP.NET AJAX controls. It also includes the classes for JSON serialization and pretty much anything else that involves communication with the ASP.NET runtime from JavaScript (and vice versa).

离鸿 2024-08-28 19:00:13

从此页面

system.web.extensions 元素使您能够配置可供支持 AJAX 的客户端、Windows Communication Foundation (WCF) 客户端(SOAP 客户端)和 .NET Framework 客户端使用的 ASP.NET 应用程序。配置设置包括以下内容:

  1. 通过authenticationService、roleService 和profileService 元素启用ASP.NET 应用程序服务。
  2. 通过 scriptResourceHandler 元素的enableCompression 和enableCaching 属性配置脚本处理程序。
  3. 通过 jsonSerialization 元素配置 JSON 序列化。

From this page

The system.web.extensions element enables you to configure ASP.NET applications that can be used by AJAX-enabled clients, Windows Communication Foundation (WCF) clients (SOAP clients), and .NET Framework clients. The configuration settings include the following:

  1. Enabling ASP.NET application services through the authenticationService, roleService, and profileService elements.
  2. Configuring the script handler through the enableCompression and enableCaching attributes of the scriptResourceHandler element.
  3. Configuring JSON serialization through the jsonSerialization element.
转角预定愛 2024-08-28 19:00:13

System.Web.Extensions.dll 包含所有 ASP.NET Ajax诸如 UpdatePanel 控件之类的优点。

System.Web.Extensions.dll contains all the ASP.NET Ajax goodness such as the UpdatePanel control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文