The Major/Basic Problem Of .Net Control 'Chart'
Most Of The Times People Using VStudio 2008 face this Problem,or the programmers who dont have chart control and install it from third party.
Here are the solution of the error mostly come in such cases
1)No Datasource type display in data source configruation wizard
Its Due to the Becoz you have added chart controls(or any thing)
and you forget to see that there is some thing wrong in toolbox on left side pane!
so just open it!
got it?
Actually you have two tabs with same name 'Data' just right click on the new tab(like tab which contain chart control) and rename it to any thing else like i have changed it to 'Chart Data'!
It will work fine!
ask me if you have any question!
2) Error executing child request for ChartImg.axd
Ok So You got this Problem...."Error executing child request for ChartImg.axd"
Dont Get Panic Because Of This ...this is again a simple problem to resolve out.
just open your web.config file...
Now just change this line
<add path="ChartImg.axd" verb="GET,HEAD"
type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" validate="false"/>
by this..
<add path="ChartImg.axd" verb="GET,HEAD,POST"
type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" validate="false"/>
hope you got the solution.
No comments:
Post a Comment