Supriya Srivastava
Supriya Srivastava

Reputation: 127

Deployment of MS Chart in ASP.net Application on Server

I am using MS chart controls in my application but it's not working after deployment on Server.

How to deploy MSChart dll's on server or which setting is to be done in order to run my application correctly.

Looking for valuable solutions of yours,

Thanks in advance, Supriya

Error :

enter image description here

Upvotes: 1

Views: 2197

Answers (1)

Niranjan Singh
Niranjan Singh

Reputation: 18290

first all your website error is unclear..either write exact error or elaborate it little more. if it is regarding missing mschart assembly on deployed website then follow this.

when you publish you website then it will not include the mschart assembly. there are two dll files of mschart in your website bin directory named System.Web.UI.DataVisualization and System.Web.DataVisualization.dll as you see in image attached with post. Copy these files to your published website bin directory after this it will work fine.

enter image description here

if you have not copied these files to your website local then you can find these in program files directory. you know the file names then you search them there..

secondly if there is some sort of error in web.config settings then follow this link to make them correct.. ASP.NET Charts Tutorial

Hope this will help you little bit..

Upvotes: 1

Related Questions