asp.net listview Use Tips

Source: Internet
Author: User
Tags eval

1. Change the background color method of the row when the mouse moves to a ListView

Front-End Code:

<asp:listview id= "ListView1" runat= "Server"
onitemdatabound= "Listview1_itemdatabound" >
<layou  ttemplate>
<table id= "Table1" runat= "server" border= "0" style= "" >
<tr runat= "Server" Id= "Itemplaceholder"/>
</table>
</LayoutTemplate>
<itemtemplate>
   <tr runat= "Server" id= "tr" >
<td>
<% #Eval ("id")%>
</td>
<td>
<%# Eval ("name")%>
</td>
<td>
<%# Eval ("Age")%>
</td>
</tr>
;/itemtemplate>
</asp:ListView>

Background code:

protected void Listview1_itemdatabound (object sender, ListViewItemEventArgs e)
{
if (E.ITEM.ITEMTYPE==LISTVI Ewitemtype.dataitem)
{
(E.item.findcontrol ("Tr") as HtmlTableRow).        Attributes.
ADD ("onmouseover", "c=this.style.backgroundcolor;this.style.backgroundcolor= ' #00A9FF '");
(E.item.findcontrol ("Tr") as HtmlTableRow).      Attributes.
ADD ("onmouseout", "this.style.backgroundcolor=c");
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.