Pie chart using ASP.NET with AJAX Library
Step 1: Download latest AjaxToolKit from here . (Please download with compatible version of .net 3.5/4/4.5) Step 2: Add library to reference for solution. Step 3: Default.aspx page code: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns=" http://www.w3.org/1999/xhtml "> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <cc1:ToolkitScriptManager ID="scriptmanager1" runat ="server"></cc1:ToolkitScriptManager> <asp:DropDownList ID="ddlCountries" runat="server" OnSelectedIndexChanged="ddlCountries_Sel...