Click here to Skip to main content
15,904,638 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
BC30456: 'InitializeCulture' is not a member of aspx page
Posted

What type of question is this ? Please explain you question in such a way so that any one can understand.

Here I am just trying to guess :-

Page.InitializeCulture() is only supported in ASP.NET 2.0 and higher.

It looks like your hosting provider still uses the .NET 1.1 runtime to serve its websites, or that you didn't configure the proper runtime version for your web application in IIS.

Apparently, This can be solved by disabling the Allow this precompiled site to be updatable feature in the publishing options of their website.

Good luck.
 
Share this answer
 
v3
Have you missed override keyword?

C#
protected override void InitializeCulture()
{
    //your culture setting

 base.InitializeCulture();
}
 
Share this answer
 
Comments
PrashantSonewane 15-Apr-13 4:42am    
add your code you are trying if possible to get more idea...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900