Step1: Drag and Drop Jquery Library on your page;
Step2: Add the below code to your page in javascript
$(document).ready(function () {
$("#<%=GridView1.ClientID%> tr:has(td)").hover(function () {
$(this).css("background-color", "Lightgrey");
}, function () {
$(this).css("background-color", "#ffffff");
});
});
Just run your app.
Oswaldlily, if this helps please login to Mark As Answer. |
Reply | Alert Moderator