aspx Tutorial

.NET Articles,jQuery demo, asp.net with jQuery, online tutorial,Jquery, SilverLight, Javascript, asp.net,JSON, MVC,.NET Articles,demo, Web Services, .NET articles, Sharepoint 2010, visual studio 2010,Aamir Hasan,IT, Building Your First Web Application Project
Advertise Here

Toolbar

Get our toolbar!

Advertize



{#advanced_dlg.about_title}
by Aamir Hasan   on Wednesday, September 19, 2012
Here Aamir Hasan has explained how to drag and drop items from one list to another using jQuery UI plugin More
{#advanced_dlg.about_title}
by Aamir Hasan   on Sunday, June 3, 2012
Here Aamir Hasan has explain how to Apply round corner using jquery plugin on asp.net server controls, div paragraphs, span etc. More
{#advanced_dlg.about_title}
by Aamir Hasan   on Saturday, December 10, 2011
This example demonstrates how to disable specific days in jQuery UI datepicker plugin. beforeShowDay option is used to enable/disable dates in jQuery UI datepicker... More
{#advanced_dlg.about_title}
by Aamir Hasan   on Saturday, December 10, 2011
This example demonstrates how to display week of the year in jQuery UI datepicker plugin. I have used showWeek and firstDay options of jQuery UI datepicker... More
{#advanced_dlg.about_title}
by Aamir Hasan   on Saturday, December 10, 2011
This example demonstrates how to use image to trigger button for jQuery UI datepicker plugin in asp.net... More
{#advanced_dlg.about_title}
by Aamir Hasan   on Friday, December 9, 2011
This example demonstrates how to restrict date range in jQuery UI datepicker. More
{#advanced_dlg.about_title}
by Aamir Hasan   on Friday, December 9, 2011
This article demonstrates how to display multiple months in jQuery UI datepicker and .... More
{#advanced_dlg.about_title}
by Aamir Hasan   on Friday, January 14, 2011
The jQuery Format Currency Plugin is a simple to format currency of any number. More
{#advanced_dlg.about_title}
by Aamir Hasan   on Friday, January 7, 2011
I was recently asked a question, that how to validate email address using jQuery in asp.net web site... More
{#advanced_dlg.about_title}
by Aamir Hasan   on Thursday, September 16, 2010
There are few JQuery Plugin’s on the internet, one on them is column/row hover jQuery Plug-in.I am going to demonstrate how to use column hover Plug-in with ASP.NET to display student information by fetching JSON data from server side to client side.When you take your mouse over the table column, column will be highlighted. This example uses the JQuery library. I have made this example in Visual studio 2010.when you create a web project in Visual Studio 2010, jQuery include in web project. If you don’t have Visual Studio 2010 then you can download JQuery latest version from here. Let start's. Open you Visual Studio 2010. Create a new Web Application. Open you Default.aspx Page. Add the following code given below. [WebMethod] public static List fetchStudentRecords() { List AddRecords = new List(); AddRecords.Add(new Student { RollNumber = 1, FullName = "Aamir Hasan", Class = "Five", Marks = 94, Gender = "Male" }); AddRecords.Add(new Student { RollNumber = 2, FullName = "Scott Hanselman ", Class = "Four", Marks = 93, Gender = "Male" }); AddRecords.Add(new Student { RollNumber = 3, FullName = "Saba Khan", Class = "Three", Marks = 82, Gender = "Female" }); AddRecords.Add(new Student { RollNumber = 4, FullName = "Nadia yasir", Class = "Nine", Marks = 80, Gender = "Female" }); AddRecords.Add(new Student { RollNumber = 5, FullName = "Mahwish Hasan", Class = "Two", Marks = 79, Gender = "Female" }); AddRecords.Add(new Student { RollNumber = 6, FullName = "Aamir Hassan", Class = "One", Marks = 99, Gender = "Male" }); AddRecords.Add(new Student { RollNumber = 7, FullName = "Karoly Domonyi", Class = "Five", Marks = 69, Gender = "Male" }); AddRecords.Add(new Student { RollNumber = 8, FullName = "Sana Ahmed", Class = "Five", Marks = 93, Gender = "Female" }); AddRecords.Add(new Student { RollNumber = 9, FullName = "Awais Ahmed", Class = "Ten", Marks = 91, Gender = "Male" }); return AddRecords; } } public class Student { public int RollNumber { get; set; } public String FullName { get; set; } public int Marks { get; set; } public string Class { get; set; } public string Gender { get; set; } } Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Note: Add System.Web.Services at the top of page to work web Method   Open your Default.aspx Page add css reference under head tag, for table style. Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 <link href="Styles/Style.css" rel="stylesheet" type="text/css" />   Add jQuery and table hover reference under head tag. Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script src="Scripts/jquery.tablehover.js" type="text/javascript"></script>   Add the following code to retrieve JSON object using $.ajax method. Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 <script type="text/javascript">         $(document).ready(function () {             $.ajax({                 type: "POST",                 url: "Default.aspx/fetchStudentRecords",                 data: "{}",                 contentType: "application/json; charset=utf-8",                 dataType: "json",                 success: function (data) {                       $("#records").html(GenerateTable(data.d));                     $('#table1').tableHover({ colClass: 'hover' });                 }             });             function GenerateTable(data) {                 var totalRows = data.length;                 var Table = "<table id='table1'>";                 Table += "<thead><tr><th>Roll No.</th><th>Full Name</th><th>Marks</th><th>Class</th><th>Gender</th></tr></thead><tbody>";                 for (index = 0; index < totalRows; index++) {                     Table += "<tr ><td>" + data[index].RollNumber + "</td><td >" + data[index].FullName + "</td><td>" + data[index].Marks + "</td><td>" + data[index].Class + "</td><td>" + data[index].Gender + "</td></tr>";                 }                 Table += "</tbody></table>";                 return Table;               }           });     </script>   Above you see, on page load, returning Date objects in the form of JSON Serialized List<Student>. Table is generated when JSON data is returned. Add following code under the body section. <h2>Table Hover jQuery plugin with asp.net using csharp</h2> <div id="records">&nbsp;</div> Press Cltr+F5 to save and run your web application. Below you can see output you can download entire source code from here. Click here to see online demo.
Advertizement 1
Advertizement 2
Advertizement 3
Advertizement 4
Advertizement 5