Necesito ayuda con listview
Me podrías ayudar a hacer esto pero para un ListView asp.net
Protected Sub ConsultaDGV_RowCreated(sender As Object, e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles ConsultaDGV.RowCreated
If e.Row.RowType = DataControlRowType.DataRow Then
e.Row.Attributes.Add("onmouseover", "this.originalstyle=this.style.backgroundColor;this.style.backgroundColor='#C1DAD7';")
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=this.originalstyle;")
e.Row.Attributes("onclick") = ClientScript.GetPostBackClientHyperlink(Me.ConsultaDGV, "Select$" + e.Row.RowIndex.ToString())
End If
End Sub
1 Respuesta
Respuesta de Víctor Fernández Portero
1