Gör en hover list i DataGrid1_ItemDataBound funktionen och lägger till färger och annat viavariabel i e.Item.Attributes.Add
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#FFFFFF';this.style.cursor='hand';")
Nu skulle jag vilja få in en vb variabel in i den raden istället för att hårdkoda färgen
e x.
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor=Color;this.style.cursor='hand';")
Hur gör man det?
.pSv: variabel i e.Item.Attributes.Add
Om du använder VB.Net skriver du:
<code>
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor=" & Color & ";this.style.cursor='hand';")
</code>
/Fredrik Normén NSQUARED2