Subscribe For Free Updates!

We'll not spam mate! We promise.

Thursday, 7 November 2013

Google Search In ASP NET

Introduction   This article describes how to add a Google search feature in ASP.Net.  Here I will describe how to communicate with the Google search API. Description Since it is third party software, we require a third-party DLL to be referenced by our application that will communicate with the Google server. For...

Monday, 4 November 2013

GridView Sorting Using jQuery Plugin

IntroductionThis article describes how to use GridView in ASP.Net and jQuery. We can do it server-side but if you do it using jQuery then you are putting less load on the server. You can handle it client-side.DescriptionTo create this application you need the jQuery plugins listed below. jquery.tablesorter.min.js jquery-1.4.3.min.js You...

Tuesday, 29 October 2013

How to Get Latitude and Longitude of a Place Using Google Map API

Introduction This article describes how to get the latitude and longitude of a location using the Google Map API in ASP.Net. Here I will describe how to communicate with the Google Map API. Description To use the Google Map API you need to add the following link to the Head section.<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script> Design...

GridView Animations Using jQuery

IntroductionThis article describes how to apply an animation to a GridView in ASP.Net using jQuery UI.DescriptionTo create this application you need the jQuery files listed below. jquery-1.9.1.js jquery-ui.js jquery-ui.css You can download them from the source code attached in this page. Here I create three pages for checking various animations...