我在VS2008排版时发现在一个"bug".
在使用asp.net的图片控件:
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/title01.gif" AlternateText="image" />
当你浏览网页时会发现,自动把你添加了style="border-width:0px;":
<img id="ctl00_ContentPlaceHolder1_bcr_Image1" src="Images/title01.gif" alt="image" style="border-width:0px;" />

这使得你在CSS样式表中对图片边框的样式给覆盖了.还有你到W3C网站"http://validator.w3.org/check"检验,会报错"This page is not Valid XHTML 1.0 Transitional!".
要解决这个"bug"你可以使用:<img id="imgImage" runat="server" src="~/Images/title01.gif" alt="image" />控件.

posted on 2008-05-07 10:20  蚊子  阅读(277)  评论(1)    收藏  举报