我有一个从数据库加载我的 aspx 文件内容的 VirtualPathProvider。一切似乎都很好,除非我的 aspx 文件引用了我的 web.config 中未明确提及的命名空间或程序集。
解决方案似乎很简单,对吧?将程序集和导入指令添加到页面......但这似乎不起作用。我仍然得到以下 HttpCompileException:
c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET
Files\app.server\70480a40\2a773b44\App_Web_test.aspx.e7cf0b6b.mzeindht.0.cs(183): error CS0234:
The type or namespace name 'Model' does not exist in the namespace 'MyApp.Data' (are you missing an assembly reference?)
即使,在我保存在数据库中的 test.aspx 页面中,我有:
<%@ Assembly Name="MyApp.Data" %>
<%@ Import Namespace="MyApp.Data" %>
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MyApp.Data.Model.TestModel>" %>
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
</asp:Content>
现在,我已经知道 MyApp.Data 已经加载到 AppDomain 中(我在运行时通过检查 AppDomain.CurrentDomain.GetAssemblies() 进行了验证)并且我知道加载 MyApp.Data 程序集的请求没有失败(因为我已经绑定到 AppDomain.ResolveAssembly 事件,并且在异常发生之前它没有触发)。此外,如果我将程序集目录中的名称更改为 MyApp.Data123(一个虚假名称),页面会在尝试加载程序集时爆炸。
如果我从页面中完全删除程序集指令,那么我会得到命名空间 找不到类型或命名空间名称“MyApp”......所以在那里有程序集指令似乎确实有点帮助......
知道我在这里缺少什么吗?谢谢。