Click here to Skip to main content
15,884,679 members
Articles / Web Development / ASP.NET

Improve ASP.NET Chart with jQuery

Rate me:
Please Sign up or sign in to vote.
4.76/5 (16 votes)
13 Jul 2009CPOL3 min read 79.5K   2.6K   67  
A simple example of how to use the ASP.NET charting control with jQuery.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Caching;
using System.IO;

namespace WebSamples
{
   public class ChartImageDestructor
   {
      String fileName;
      public ChartImageDestructor(String fileName){
         this.fileName = fileName;
      }

      public void RemovedCallback(String k, Object v, CacheItemRemovedReason r){
         try{
            File.Delete(fileName);
         }
         catch {
         }
      }
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions