gpt4 book ai didi

c# - Global.asax 和 MasterPage 之间会发生什么?

转载 作者:行者123 更新时间:2023-12-04 10:22:29 31 4
gpt4 key购买 nike

我正在开始多语言工作。在 Global.asax.cs 的 Application_BeginRequest() 方法中,读取 cookie 并将 CurrentUICulture 设置为 en-US .但是,在 MyPage.aspx 中,该值令人惊讶地更改为 nl .

现在我继承了这个网站,它是中等规模的,有一个相当复杂的菜单系统。此外,它还维护一个用户表,其中包含一个首选语言字段,其值类似于 nl ,但我在代码中找不到(还)从那个用户表设置 CurrentUICulture 的地方。

这是一个带有 MasterPage 的页面,所以我查看了那里。我在 MasterPage.Page_Init() 的第一个页面事件中设置了一个调试断点,并在即时窗口中检查了 System.Threading.Thread.CurrentThread.CurrentUICulture.Name。值为:'nl'。我完全不解。

我的问题是:什么代码可以在 Global.asax.cs、Application_BeginRequest() 和 MasterPage.Page_Init() 之间执行?

最佳答案

Application_BeginRequest()处理程序是 Asp.Net 生命周期的第一步。看这里:

https://docs.microsoft.com/en-us/iis/application-frameworks/building-and-running-aspnet-applications/aspnet-integration-with-iis

当处理程序正在执行时(即您的页面),它有自己的生命周期:

https://docs.microsoft.com/en-us/previous-versions/ms178472(v=vs.140)?redirectedfrom=MSDN

这个文件说:

Start

In the start stage, page properties such as Request and Response are set. At this stage, the page also determines whether the request is a postback or a new request and sets the IsPostBack property. The page also sets the UICulture property.



当检查可用事件时,我们会看到:

PreInit

Raised after the start stage is complete and before the initialization stage begins.



所以;看来最早阶段可以换 UICulturePreInit阶段。然而,最合适的地方是 InitializeCulture用于此特定目的的方法:
public partial class _Default : Page
{
protected override void OnPreInit(EventArgs e)
{
base.OnPreInit(e);

HttpCookie languageCookie = Request.Cookies["lang"];
if (languageCookie != null)
{
if (languageCookie.Value == "en")
{
base.Culture = base.UICulture = CultureInfo.GetCultureInfo("en-US").Name;
}
}
}

protected override void InitializeCulture()
{
// Or do it here. This is more appropriate.
}
...
...
}

编辑:

尽管在多个页面之间共享,但不应在母版页的事件处理程序中设置区域性信息,因为从以下跟踪输出中可以看出,当页面使用母版页时,母版页被解释为页面和 Page_Load此母版页的事件在 LoadControls() 期间执行,后者在页面的 Page_Load 之后执行。处理程序。

我还想在这里提到跟踪功能。通过启用跟踪,可以查看有关页面执行过程、其子页面、所有时间、标题等的大量信息:

在 web.config 文件中,在 <system.web> 下:
<trace pageOutput="true" requestLimit="10" enabled="true" localOnly="true" traceMode="SortByTime" mostRecent="true"/>

或在此处阅读 <system.webServer>相等的:

https://docs.microsoft.com/en-us/iis/configuration/system.webserver/tracing/
Control Tree
Control UniqueID Type Render Size Bytes (including children) ViewState Size Bytes (excluding children) ControlState Size Bytes (excluding children)
__Page ASP.default_aspx 1104 0 0
ctl00 ASP.masterpage_master 1104 0 0
ctl00$ctl02 System.Web.UI.LiteralControl 68 0 0
ctl00$ctl00 System.Web.UI.HtmlControls.HtmlHead 48 0 0
ctl00$ctl01 System.Web.UI.HtmlControls.HtmlTitle 29 0 0
ctl00$head System.Web.UI.WebControls.ContentPlaceHolder 6 0 0
ctl00$head$ctl00 System.Web.UI.LiteralControl 6 0 0
ctl00$ctl03 System.Web.UI.LiteralControl 14 0 0
form1 System.Web.UI.HtmlControls.HtmlForm 954 0 0
ctl00$ctl04 System.Web.UI.LiteralControl 21 0 0
ctl00$ContentPlaceHolder1 System.Web.UI.WebControls.ContentPlaceHolder 291 0 0
ctl00$ContentPlaceHolder1$ctl00 System.Web.UI.LiteralControl 198 0 0
ctl00$ContentPlaceHolder1$hdn1 System.Web.UI.WebControls.HiddenField 91 0 0
ctl00$ContentPlaceHolder1$ctl01 System.Web.UI.LiteralControl 2 0 0
ctl00$ctl05 System.Web.UI.LiteralControl 18 0 0
ctl00$ctl06 System.Web.UI.LiteralControl 20 0 0

关于c# - Global.asax 和 MasterPage 之间会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60787222/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com