Posts

Showing posts with the label ASP.NET

Highlight GridView Row on Mouse Hover in ASP.NET

Image
Introduction Being as an ASP.NET guy, I always wish to deliver the best apps to the client so that they call WOW!! If you want to highlight the row when user hover the mouse, in this post we are going to do the same using jQuery. Look at the screenshot example. So, let’s start developing such system. First of all you need to add the reference of your jQuery file in the <head> area. In my case I’m using master page so, I’ll place it in ContentPlaceHolder. < script src ="../../../../Scripts/jquery-1.4.1.min.js" type ="text/javascript"></ script > Now you need to place the jQuery method to apply it in grid view. Here is the method code that I’m using. < script type ="text/javascript">     $(document).ready( function () {         $( "tr" ).filter( function () {             return $( 'td' , this ).length && !$...

Popular posts from this blog

Customize User's Profile in ASP.NET Identity System