0

私たちのアプリケーションでは、素晴らしいフォントを使用しています。アプリケーションが IIS でホストされている場合、適切なフォントが表示されません。それ以外の場合、Visual Studio を介して実行すると、適切なフォントが提供されます。

<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/plugins/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/css/style-metro.css" rel="stylesheet" type="text/css"/>
<link href="assets/css/style.css" rel="stylesheet" type="text/css"/>
<link href="assets/css/style-responsive.css" rel="stylesheet" type="text/css"/>
<link href="assets/css/themes/default.css" rel="stylesheet" type="text/css" id="style_color"/>
<link href="assets/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css"/>

これは、マスター ページ ファイルのセクションです。

4

2 に答える 2

0

次の行を Web.Configs system.WebServer タグに追加するとうまくいきました。

<staticContent>
   <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
</staticContent>
于 2013-10-10T11:41:37.637 に答える