Using Firebug
or another debugger, find the css
file in which the glyphicon
is defined. In this css
file check the src
location at @font-face
section. You might need to make some changes (i.e. adding or removing ' ../ ') in the src
section according to your glyphicons
location in your project as shown below:
src: url('../fonts/glyphicons-halflings-regular.eot');
or
src: url('../../fonts/glyphicons-halflings-regular.eot');
On the other hand, if some of the application files are not displayed after publishing it to the server, you might need to apply the following changes regarding to file path:
from
~/../../Content/images/img.png
to
./../../Content/images/img.png
And under Properties
window of the related files, check if the properties set for them as shown below:
Build Action : Content
Copy to Output Directory: Do not copy
Hope this helps...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…