How to configure invariant culture in ASP.NET globalization?

后端 未结 2 940
花落未央
花落未央 2020-11-29 06:32

I need to fix CurrentCulture as the invariant culture in an ASP.NET application. How can I do this?


   
      

        
2条回答
  •  迷失自我
    2020-11-29 06:54

    Either add the following to your web.config file:

    
        
    
    

    or you can add this statement on the page:

    <%@ Page uiCulture="en-US" culture="en-US" %>
    

    Hope this helps.

提交回复
热议问题