Posted on: 9/11/2014 2:10:37 PM | Views : 341

My application has check boxes for years and allows a user to select up to 5 years.  This selection is passed to a class which passes to an Oracle stored procedure.  This procedure queries the database based on those selected years and puts it in an in-memory table to be passed back to the class.  My data looks like:
     Employee       2005     2006    2007    2008
      Bob               2000    3600    1000     2500
      Mary             3400     4200   2000    3000

I want to use the "Employee 2005 2006 2007 2008" as my gridview headers.  I am creating ...

Go to the complete details ...