0

我有一个动态创建 aspx 页面的应用程序(生成从基页继承的 aspx 文件)。例如,我有文件 Default.aspx

<%@ Page Language="C#" MasterPageFile="Page.master" Inherits="MyWebsite.AppCode.BaseCmsPage" %>

<asp:Content ContentPlaceHolderID="cphBody" runat="server">
Content goes here (it might be a lot of text or user controls
</asp:Content>

如何动态预编译此类页面以使首次加载更快?

4

1 回答 1

0

我以前没有做过,但我想你会使用 Aspnet_compiler.exe

http://msdn.microsoft.com/library/ms229863.aspx

于 2013-11-04T13:55:54.020 回答