Posts

Showing posts from July, 2011

nth highest salary of the employee in asp.net

Image
Introduction: Hello guys, in this article i will explain that how we can find nth highest salary of the employee using asp.net. This is very helpful artucle for the asp.net deveploer , to find the 1 st ,2 nd, 3 r Highest salary of the employee and so on for any company ,shop etc. Implementation: Create a page named nth highest salary. Drag and drop a dropdownlist and Gridview from the  toolbox. Below I am giving complete  code for .aspx page and .aspx.cs page Code for .aspx page: < head runat ="server">     < title > Nth Highesr salary of the employee </ title > </ head > < body >     < form id ="form1" runat ="server">     < div >            Select value  < asp : DropDownList ID ="dd_rank" runat ="server" AutoPostBack ="True"             on...

Visualization Gauge Chart in asp.net

Image
Introduction: Hello dears, in this article i will explain that how we can create Visualization: Gauge Chart using asp.net. This is very helpful artucle for the asp.net deveploer to creating a mast graph in asp.net. This type of chart you can create to showing   the percentage of the student,Cricket scoreetc Implementation: Here i am taking the reference from the below link . http://code.google.com/apis/chart/interactive/docs/gallery/gauge.html Google use javascript code for the implementation of this graph. I am using same javascript code but am merging also my asp.net experience with this code. And create the same graph in Asp.Net. Code for .aspx page: < head id ="Head1" runat ="server">          <% --the below two javascripts   are needed to run this program you can       also download this script from the below link -- %>   < script type ='text/ja...