Horje
add mime type for woff in web.config Code Example
add mime type for woff in web.config
<system.webServer>
  <staticContent>
     <!-- remove first in case they are defined in IIS already, which would cause a runtime error -->
     <remove fileExtension=".woff" />
     <remove fileExtension=".woff2" />
     <mimeMap fileExtension=".woff" mimeType="font/woff" />
     <mimeMap fileExtension=".woff2" mimeType="font/woff2" />
  </staticContent>
</system.webServer>




Csharp

Related
use a for loop to sum an array c# Code Example use a for loop to sum an array c# Code Example
how to make play button in unity Code Example how to make play button in unity Code Example
palindrome number c# Code Example palindrome number c# Code Example
asp.net model Code Example asp.net model Code Example
c# loop string array Code Example c# loop string array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11