c# - Multilingual ASP.NET Web Site doesn't work -
c# - Multilingual ASP.NET Web Site doesn't work -
here link, author explains how build multilingual website
when run code, such error mesage "an asp.net setting has been detected not apply in integrated managed pipeline mode."
then found such workaround in web.config file:
<configuration> . . . <system.webserver> <validation validateintegratedmodeconfiguration="false" /> </system.webserver> </configuration>
now website works me, shown in russian, not in english language or greek. new asp.net, don't understand source's languagemodule class, should somehow modify it?
there 2 types of pipeline modes in iis, integrated , classic. error getting symptomatic of having web.config arranged in classic configuration.
integrated mode provides more flexibility both iis , asp.net functionality executed in same pipeline, instead of 1 after other.
it might possible the project configured , hosted on website configured run under integrated mode. if case, hosting website in application pool set classic mode, may going.
another thing check ensure things httpmodule registered in right manner.
c# asp.net multilingual app-globalresources
Comments
Post a Comment