在VS2003下页面执行的没问题 (样式,脚本)。可是在VS2005起类似的页面,样式引用,脚本代码都一样,可页面执行后,样式部分根本没效果,脚本有的执行错误。如果你碰到了跟我同样的问题,请看一下页面的文档类型声明是不是下面这个样子:
这样用到的样式,引用的脚本才会起作用。否则IE是不认的哦!当你设计页面时不是很严谨的XML格式书写代码,那么请将文档类型声明修改一下,HTML 4.0却没有这么严格。VS2005在新建页面中默认的文档类型是XHTML方式。不论是在ASP.NET中,在JSP,HTML页面中上述问题也存在。
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
如果是,呵呵,请改成如下声明:
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
>
原因是但DOCTYPE声明为XHTML方式,则HTML标记都要采用XML格式书写方式,每个元素都以开闭的方式书写,像这样:
<
head
runat
="server"
>
< title ></ title >
< link href ="Image/StyleSheet.css" rel ="stylesheet" type ="text/css" />
< script type ="text/javascript" src ="Image/getmusic.js" ></ script >
</ head >
< body scroll ="no" >
< form id ="form1" runat ="server" >
< table border ="0" cellpadding ="2" cellspacing ="0" width ="100%" style ="height: 100%"
class ="tableCss" >
< tr >
< td >
</ td >
</ tr >
</ table >
</ form >
</ body >
</ html >
< title ></ title >
< link href ="Image/StyleSheet.css" rel ="stylesheet" type ="text/css" />
< script type ="text/javascript" src ="Image/getmusic.js" ></ script >
</ head >
< body scroll ="no" >
< form id ="form1" runat ="server" >
< table border ="0" cellpadding ="2" cellspacing ="0" width ="100%" style ="height: 100%"
class ="tableCss" >
< tr >
< td >
</ td >
</ tr >
</ table >
</ form >
</ body >
</ html >