Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Dec 18, 2012 12:44 PM by justshahzad
Member
21 Points
34 Posts
Dec 18, 2012 12:15 PM|LINK
Hi, I have two sections in web.config file for globlization. One for root directory and one for sub directory.
<location path="." inheritinchildapplications="false"> <system.web> <globalization resourceproviderfactorytype="something" uiculture="auto" enableclientbasedculture="true" /> </system.web> </location>
and
<location path="Forum"> <system.web> <globalization uiCulture="ar-SA"/> </system.web> </location>
But only one section work at a time. Please suggest.
All-Star
31808 Points
6504 Posts
Dec 18, 2012 12:27 PM|LINK
try
<configuration> <system.web> <globalization resourceproviderfactorytype="something" uiculture="auto" enableclientbasedculture="true" /> </system.web> </configuration>
<location path="Forum" allowOverride="true"> <system.web> <globalization uiCulture="ar-SA"/> </system.web> </location>
Dec 18, 2012 12:44 PM|LINK
Thanks, But allowOverride="true" doesn't make any progress.
justshahzad
Member
21 Points
34 Posts
Globalization setting issue in configuration file.
Dec 18, 2012 12:15 PM|LINK
Hi, I have two sections in web.config file for globlization. One for root directory and one for sub directory.
<location path="Forum"> <system.web> <globalization uiCulture="ar-SA"/> </system.web> </location>But only one section work at a time. Please suggest.
oned_gk
All-Star
31808 Points
6504 Posts
Re: Globalization setting issue in configuration file.
Dec 18, 2012 12:27 PM|LINK
try
<location path="Forum" allowOverride="true"> <system.web> <globalization uiCulture="ar-SA"/> </system.web> </location>justshahzad
Member
21 Points
34 Posts
Re: Globalization setting issue in configuration file.
Dec 18, 2012 12:44 PM|LINK
Thanks, But allowOverride="true" doesn't make any progress.