using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace InfoSoftGlobal.BluePrintApp.FC_ASP { /// /// Summary description for Chart_YearlySalesByCat. /// public class Chart_YearlySalesByCat : System.Web.UI.Page { public string year; private void Page_Load(object sender, System.EventArgs e) { //'Request the year for which we've to show data. year = Request.QueryString["Year"]; //'If year has not been provided, we default to 1996 if (year == null || year.Length == 0) year = "1996"; } public string GetSalesByCategoryChartHtml() { string strXML; strXML = ""; strXML = strXML + DataGeneration.getYrlySalesByCatXML(year,true,false); //'Add some styles to increase caption font size strXML = strXML + "