I found that many pages of my support site inherit a base page that overrides InitializeCulture in order to configure some globalization options.
Is this method called every time for any incoming request?
According to http://msdn.microsoft.com/en-us/library/system.web.ui.page.initializeculture.aspx it will be called very early (for example, even before the controls are added earlier) in page initialization process. So yes, it will be called every time an aspx page is requested, which comes from your base page.
Yes, if InitializeCulture is called on the base page, it will be called on every page that inherits this base page and for every incoming request.
: HttpContext.Current.Response.Write( "intializing culture" ); . , , , .
Yes, and for each BrowserLink Update , as I just found out. (Using Visual Studio 2015 and Google Chrome today.)
It annoys you, you can disable Browserlink .
Source: https://habr.com/ru/post/1739411/More articles:Convert memory size (readable) to actual number (bytes) in Perl - linuxHTML encodes UTF-8 string, is distorted in latin1 - ruby-on-railshow to check if windows or debian is in c ++? - c ++What is an effective hidden secure template system for PHP? - phpA book / textbook that talks about how to create programs that are easy to maintain and less closely related? - phpChecking parsing date within date range - c ++Creating a transparent background in WPF - .netWhat is the best way to have a generic Comparer - genericsDependency Walker does not show all dependent Dll - fortranThere are several different ways to determine an identifier. What is the difference? - androidAll Articles