效果圖
實現方法
雙擊GridView的OnRowDataBound事件
在後台的GridView
protected void GridView
{
//如果是綁定數據行
if (e
{
if (e
{
((LinkButton)e
}
}
}
效果圖
實現方法
雙擊GridView的OnRowDataBound事件
在後台的GridView
protected void GridView
{
//如果是綁定數據行 //清清月兒
if (e
{
////鼠標經過時
//e
////鼠標移出時
//e
////當有編輯列時
//if (e
//{
// ((LinkButton)e
//}
}
if (e
{
int id = e
e
}
}
注意這時最好把前台的第一列的表頭該為
因為以前的第一列被
<asp:GridView ID=
OnRowUpdating=
<FooterStyle BackColor=
<Columns>
<asp:BoundField DataField=
<asp:BoundField DataField=
<asp:BoundField DataField=
<asp:BoundField DataField=
<asp:CommandField HeaderText=
<asp:CommandField HeaderText=
<asp:CommandField HeaderText=
</Columns>
<RowStyle ForeColor=
<SelectedRowStyle BackColor=
<PagerStyle BackColor=
<HeaderStyle BackColor=
</asp:GridView>
From:http://tw.wingwit.com/Article/program/net/201311/12456.html