It's not who you are underneath, it's what you do that defines you

asp.net 给Button控件设置背景图片

button控件是asp.net下常用的控件之一,经常需要使用各种带背景图片的按钮,用Imagebutton没有Text属性,不够通用,每次都得用ps做,很麻烦,而button却没有设置背景图片的属性,除了只能写用户控件外,可用css完全实现,方法也很简单:

先在head中写样式类.button

<style type="text/css">

.button

{

.button{

width:56px;  /*图片宽带*/

background:url(btn2.jpg) no-repeat left top;  /*图片路径*/

border:none;  /*去掉边框*/

height:21px; /*图片高度*/

}

}

</style>

引用时设置Button的CssClass属性,Ok.另外,考虑下对于使用模板的页面的使用情况哦~

posted @ 2012-06-01 16:19  金铭杰  阅读(6078)  评论(0编辑  收藏  举报

Brick walls are there for a reason :they let us prove how badly we want things