2

I'm developing a simple website in VS 2010 that uses master pages. All pages are ok except the most simple of contact pages. I've pasted the markup below. There is nothing in the code-behind. Problem is, when I browse to the page, Chrome displays a message telling me that "This page is in Hungarian". I've even tried deleting the page and re-creating with a different name but get the same problem. Can anyone tell me why?

<div id="info">
    <p class="red">
        <span class="main"><strong>Email:</strong></span> <span class="redlink"><a href="mailto:info@zzz.co.uk">
            info@zzz.co.uk</a></span><br />
        <!--span class="main"><strong>Telephone: </strong></span>0843 2895339</p>!-->
        <p>
            &nbsp;</p>
</div>
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200

1 Answers1

4

Look in the web.config. Probably set to a different culture.

You probably need to change it to something like this:

<configuration>
  <system.web>
     <globalization culture="en-US" />
  </system.web>
</configuration>

Or if it's only on that page, check the culture and UI culture in the page directive and adjust it accordingly.

James Johnson
  • 45,496
  • 8
  • 73
  • 110