0

我正在将 autofac 与 asp.net 一起使用。在 Global.asax 我注册了我所有的网页:

AssertNotBuilt();
// Register Web Pages
m_builder.RegisterAssemblyTypes(typeof(AboutPage).Assembly)
  .Where(t => t.GetInterfaces().Contains(typeof(IHttpHandler)))
  .AsSelf().InstancePerLifetimeScope();

m_container = m_builder.Build();
m_wasBuilt = true;

然后我使用自定义的 httpHandler 来获取当前网页:

    public class ContextInitializerHttpHandler : IHttpHandler, IRequiresSessionState
    {
        public void ProcessRequest(HttpContext context)
        {
            //Get the name of the page requested
            string aspxPage = context.Request.Url.AbsolutePath;

            if (aspxPage.Contains(".aspx"))
            {
                // Get compiled type by path
                Type webPageBaseType = BuildManager.GetCompiledType(aspxPage).BaseType;

                // Resolve the current page
                Page page = (Page)scope.Resolve(webPageBaseType);

                //process request
                page.ProcessRequest(context);

            }
        }
        public bool IsReusable
        {
        get { return true; } 
        }
  }

一切正常,但是当它进入 web page_load 时,我看到页面上存在的所有 asp 控件都是空的。为什么它们为空,我该如何初始化它们?

4

1 回答 1

0

我想到了。我注册的页面不像我可以从我的 http 处理程序的上下文中获取的页面那样编译:

string aspxPage = context.Request.Url.AbsolutePath;
Type webPageBaseType = BuildManager.GetCompiledType(aspxPage);

这些是我需要的包含所有控件的页面。问题是,我无法在我的 http 处理程序中注册它们,因为它们是动态的并且以 somewebpage_aspx 的形式查看,并且程序集是 App_Web_somewebpage.aspx.cdcab7d2.r3x-vs2n,Version=0.0.0.0,Culture=neutral,PublicKeyToken =空。

所以解决方案(或hack ..)不是注册网页,而是从范围内解析页面控件:

ILifetimeScope scope = IocInitializer.Instance.InitializeCallLifetimeScope();
Type webPageType = BuildManager.GetCompiledType(aspxPage);
Page page = (Page)Activator.CreateInstance(webPageType);

foreach (var webPageProperty in webPageType.GetProperties(BindingFlags.SetProperty | BindingFlags.Instance | BindingFlags.Public))
{
    if (scope.IsRegistered(webPageProperty.PropertyType))
    {
        var service = scope.Resolve(webPageProperty.PropertyType);
        webPageProperty.SetValue(page, service, null);
    }
}
于 2012-10-24T07:07:27.610 回答