第一次用asp.net2.0做网站。弱弱的一个问题
<head runat= "server ">
<title> ttttttt </title>
<link type= "text/css " href= "/Style/Main.css "/>
</head>
/Style/Main.css 怎么不起做用?把main.css里的内容复制出来到
<style> </style> 这间就可以。。这个怎么回事?
------解决方案--------------------Main.css是不是有中文,一般是编码造成的,将Main.css用记事本打开,另存为utf-8即可
前提是路径没有问题
------解决方案-------------------- <link type= "text/css " href= "/Style/Main.css "/>
改成
<link type= "text/css " href= "Style/Main.css "/> 试下哦
------解决方案--------------------路径问题可能性比较大,有可能你2.0建站时是以file格式建的,而不是http格式。