Posts

Showing posts from March, 2012

Bind dropdownlist in asp.net

Image
Introduction: Hello friends, in this article i will explain that how we can bind dropdownlost dynamically in asp.net.This article is very useful for the all the .net developer. In this article i’ll the logic to bind the dropdownlist with the column of a table of the sql server in asp.net.  Implementation: create a new website add a page bind_dropdownlist.aspxmpage . Drag and drop a dropdownlist   from the toolbox inside the   < body > body tag at the .aspx page.   Below   i am giving the complete code for the html page and .cs page.  Code for bind_dropdownlist.aspx page < head runat ="server">     < title > Bind Dropdownlist </ title > </ head > < body >     < form id ="form1" runat ="server">     < div >         < asp : DropDownList ID ="dd_name" runat ="server">    ...

Chart with negative and positive values

Image
Introduction- Hello Guys, “ Welcome back” Today i am here with another one new great article. In this article I will explain that how we can create dynamic chart with the negative and positive data or values. This article will very helpful for all the .net developers to create attractive chart to show the negative and positive data or values. And I convert it into .net using the sql server query and the stringbuilder class of the .net. Below I am also giving the link to download the complete folder of this article with the sql server script. Implementation- creates a website, add page named negative_chart.aspx. Place a literal control at the design side of this page. Below I am giving the complete code for .aspx page and also .aspx.cs page. All the .js files that I am using in the .aspx are available inside the downloaded folder. You can copy and paste the complete code and enjoy the   execute of whole code. Code for negative_chart.aspx Page < head runat ="server...