Hi,
I have developed one ASP.Net 2.0 web application. There are some standalone pages like header.aspx(no code behind) in which english, chinese and japanese html page are included based on language information as following:
<% if lang="en"{%>
<!--#include virtual="header_en.html"-->
<%} if(lang="jp"){%>
<!--#include virtual="header_jp.html"-->%>
These htmls have chinese japanese characters,but not showing properly when it is browsed independently or through aspx pages. I have included globalization as "utf-8" in web.config and in the header.aspx <!DOCTYPE > declaration is there and <meta http-equiv="Content-Type" content="text/html;charset="utf-8"/>
Can anyone please help me out what can be the possible reason for this? It is urgent.
NOTE: this is only for a particular application is occuring, but in other application just <#include > is working fine.