I am using special fonts for BAR-CODE. it is working perfectly in all pages using a single master page. when I route to another page which is not using that master page the font is not appearing. This is only happening on the web server while in the local host it is working fine. In the Head of master page i have this:
<link href="App_Themes/Theme1/Mysheet.css" rel="stylesheet" />
and in the CSS file (Mysheet.css) i have:
@font-face {
font-family : IDAutomationHC39M;
src : url(IDAutomationHC39M.ttf);
}
.BarcodeText {
family : IDAutomationHC39M;
font-size:large;
}
it was resolved by using following tag in the Head of the redirected page
<meta http-equiv="x-ua-compatible" content="IE=10" />
this tag was present in the master page as well.