首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

怎么在GridView里加虚线

2012-10-29 
如何在GridView里加虚线?问题:如何在GridView里加虚线;?转自:http://bbs.suda123.com/Archiver/webbianche

如何在GridView里加虚线

?

问题:如何在GridView里加虚线;

?

转自:http://bbs.suda123.com/Archiver/webbiancheng/thread-230875-1.html

?

在css中将solid改成dashed即可!!
cs:
? ?<style type="text/css">
? ?.bottomLine
? ?{
? ? ? ?border-bottom: #000000 1px dashed;
? ? ? ?border-left-style: none;
? ? ? ?border-right-style: none;
? ?}
? ?</style>

?

例如:

?

cs:
? ?<style type="text/css">
? ?.bottomLine
? ?{
? ? ? ?border-bottom: #000000 1px solid;
? ? ? ?border-left-style: none;
? ? ? ?border-right-style: none;
? ?}
? ?</style>

html:
......
? ?<asp:BoundField DataField="EmployeeID" HeaderText="ID" ReadOnly="True" >
? ?<ItemStyle Css/>
? ?</asp:BoundField>

热点排行