0

在最新的 2013 VS 预览版中,当您创建一个基本的 asp.net Web 表单页面时,它会生成一个基本站点,并在项目中引用并包含以下 JS 文件。

现在我注意到,例如 WebForms.js 似乎处理回发等,但是我想知道如果我打算推出自己的树视图、网格视图等是否需要它们?

如果我不打算使用提供的 UI(引导程序),我可以安全地删除这些文件中的哪些?

<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
4

1 回答 1

1

这个关于 Asp.Net scriptManager 的博客可能会对您的问题有所帮助。

WebForms 中的 ASP.NET 4.5 ScriptManager 改进

于 2013-12-18T12:54:35.413 回答