ASP代码,求加一个加框
<img border=0 src=" & rsProduct("DefaultPicUrl") & " width=150 height=107 >
能不能在这个代码的基础上给图片加一个一像素的边框,我试着写完出错。
补充:我在多贴上一点代码
strTemp= strTemp & "<table>"
strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td width=100% border=0 cellspacing=1 cellpadding=1 >"
strTemp= strTemp & "<div align=center ><a href=>http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='110' height='80'>"
strTemp= strTemp &"<param name=movie value='UploadFiles/"&rsProduct("DefaultPicUrl")&"'>"
strTemp= strTemp &"<param name=quality value=high>"
strTemp= strTemp &"<param name='Play' value='-1'>"
strTemp= strTemp &"<param name='Loop' value='0'>"
追问:如果我想自定义一个边框颜色呢我又补充了一些代码,您看一下
答案:border=1
其他:css 加个框就行了 <img border=0 src=" & rsProduct("DefaultPicUrl") & " width=150 height=107 style="border: 1px solid #CCCCCC;" >
#CCCCCC就是边框的颜色,可以随意修改。
试试这个
strTemp= strTemp & "<img border=0 src=" & rsProduct("DefaultPicUrl") & " width=150 height=107 style='border: 1px solid #CCCCCC;' >"
上一个:asp.net问题。。。。。。。求助
下一个:asp判断字段为空if len(rs("aa"))=0 then 或者if isnull(rs("aa")) or rs("aa")="" then怎么不管用?