Mehdi Haghgoo
Mehdi Haghgoo

Reputation: 3484

using chart control in asp.net toolbox

I need to create charts for my web application using database data. I have a table callled students with another table marks. Using these two I want to plot marks obtained by students on a linear chart. I do not have an experience with ASP.NET chart controls. Is there a simple example to start with?
I want to draw a 2-D line chart for marks of one class students. Next I'm going to calculate means for each class and create a bar chart comparing several classes.
Furthermore, I want to see if these charts can be dynamically created and subsequently assigned values. For example, as the user chooses the number of classes to sketch plots for, they should dynamically be drawn.

Upvotes: 0

Views: 761

Answers (2)

Wilson
Wilson

Reputation: 176

Check the httpHandlers configuration in IIS. Try following:

  1. Open Server Manager
  2. Select Roles>Web Server (IIS)>IIS Manager>Select the Server>Applocation Pools
  3. Select the appPool that your asp.net app is running under>Click on 'Advanced Settings' from the right hand pane.
  4. Under Advanced Settings>General>Managed Pipeline Mode, select "Classic"
  5. Recycle app pool and test your app.

Upvotes: 0

Related Questions