Web 客户端软件工厂 CreateNewAttribute 属性在 global.asax 中不起作用

发布于 2024-07-30 02:11:42 字数 546 浏览 4 评论 0原文

我们在代码隐藏页面中使用以下代码

[CreateNew]
public AdminController Controller { get; set; }

,并在控制器类中使用以下代码,

[ServiceDependency]
public IAdminService Adminervice { get; set; }

这对于普通的 aspx 页面来说效果很好。

我想审核应用程序中的会话启动事件,并且我正在使用 global.asax 事件来执行此操作。

但是这里控制器尚未实例化

protected override void PrePageExecute(System.Web.UI.Page page)
{

    if (Controller == null)
    {
           // controller is null...
    }
}

如何使用 [CreateNew] 属性从全局页面访问控制器?

We are using the following code in a code behind page

[CreateNew]
public AdminController Controller { get; set; }

and the following code within the controller class

[ServiceDependency]
public IAdminService Adminervice { get; set; }

this works fine for a normal aspx page.

I would like to audit a Session starting event in my application and I'm using the global.asax events to do so.

However the controller has not been instantiated here

protected override void PrePageExecute(System.Web.UI.Page page)
{

    if (Controller == null)
    {
           // controller is null...
    }
}

How can I access the controller from the global page using the [CreateNew] attribute?

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

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

发布评论

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

评论(1

似梦非梦 2024-08-06 02:11:42

我没有弄清楚如何访问控制器,但我可以使用以下代码片段获取服务。

[ServiceDependency]
public ICommonService CommonService { get; set; }

protected override void PrePageExecute(System.Web.UI.Page page)
{
    if (Session.IsNewSession)
    {
        if (CommonService == null)
        {
            WebClientApplication.BuildItemWithCurrentContext(this);
        }
        CommonService.AuditTrailLogin(true);
    }
}

I didnt work out how to access the controller, but I could get the service with the following snippet of code.

[ServiceDependency]
public ICommonService CommonService { get; set; }

protected override void PrePageExecute(System.Web.UI.Page page)
{
    if (Session.IsNewSession)
    {
        if (CommonService == null)
        {
            WebClientApplication.BuildItemWithCurrentContext(this);
        }
        CommonService.AuditTrailLogin(true);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文