IdentityServer / IdentityServer2

[deprecated] Thinktecture IdentityServer is a light-weight security token service built with .NET 4.5, MVC 4, Web API and WCF.
Other
410 stars 291 forks source link

Meta tag X-UA-Compatible #815

Closed mbhattar closed 9 years ago

mbhattar commented 9 years ago

Hi I am using IdentityServer V2. Due to the meta tag in layout page, EmailAddress DataAnnotation validator is not working.
(came to know that If this tag is present then page will not validate using the W3 Validator.) If i remove the tag it works fine. Will there be any issue's by removing it?

Thank you

Murali

brockallen commented 9 years ago

This meta tag tells IE to not guess about what version of HTML and instead render with its latest standards mode. This was needed (despite the presence of the DOCTYPE), otherwise we found IE rendering an older mode that caused problems (I can't recall what they were -- either rendering or JS issues).

mbhattar commented 9 years ago

Thank you