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 Data_SalesByCategory. /// public class Data_SalesByCategory : System.Web.UI.Page { private void Page_Load(object sender, System.EventArgs e) { getSalesByCategory(); } private void getSalesByCategory() { //This page outputs the sales by category XML data for the the specified year. //Request the year for which we've to show data. string year; year = Request.QueryString["Year"]; //If year has not been provided, we default to 1996 if (year != null && year.Length == 0) year = "1996"; Functions functionForWriter = new Functions(); functionForWriter.Write(""); functionForWriter.Write(DataGeneration.GetCumulativeSalesByCatXML(year,true)); //Add some styles to increase caption font size functionForWriter.Write("