我无法在母版页中使用以下代码进行全球化和本地化。它给出了代码部分中注释的错误“不包含 InitializeCulture 的定义”
protected override void InitializeCulture()
{
if (Request["Language"] != null)
{
//String selectedLanguage = Request["Language"];
// code wil go here
}
base.InitializeCulture();
//base.InitializeCulture gives error as mentioned in the next line
//does not contain a defination for InitializeCulture
}
当我将此代码添加到母版页以外的其他页面时,它工作正常。在母版页中使用此代码是否有任何限制。
如果我能够在母版页中定义此代码,那么我不需要在每个文件中编写此代码。
我做错了什么吗,我已经包含用于线程和全球化的文件,但它在母版页中仍然不起作用