ACP
ACP

Reputation: 35268

Which JavaScript library would you suggest in ASP.NET?

I am developing an ASP.NET web application, and now I want to use some charts for my application. I know there are many JavaScript libraries like jQuery, YUI and so on.

What would be best suited for ASP.NET?

Upvotes: 0

Views: 486

Answers (6)

Richie
Richie

Reputation: 9266

jQuery if you are looking for transitions with pictures, sliders and all.

Upvotes: 2

Ankur Goel
Ankur Goel

Reputation: 1095

For ASP.NET, use the Microsoft chart controls: Scott Guthrie's blog entry "New ASP.NET Charting Control: <asp:chart runat="server"/>".

Upvotes: 0

Kico Lobo
Kico Lobo

Reputation: 4404

jQuery: the best JavaScript library I had ever used.

Remember: JavaScript does not have any dependency with any web framework. All you need is your HTML.

Upvotes: 1

Kristen
Kristen

Reputation: 4291

TO generate graphs and charts you might like to look at http://code.google.com/apis/chart/

Upvotes: 1

David Hedlund
David Hedlund

Reputation: 129792

In ASP.NET MVC, Microsoft has actually chosen to include jQuery by default, so I'd say that's one library that MS endorse themselves. I currently use it in almost all of my .NET projects. Visual Studio 2010 will support full intellisense for all of its helper functions. It's also immensely popular right now. I'd say jQuery =)

Upvotes: 11

Jey Geethan
Jey Geethan

Reputation: 2285

There is no difference(/partiality) on javascript frameworks just for ASP.NET. I would go for anyone that is easy to learn and work with.

My personal experience : JQuery and for charts I would go for GCharts.

Upvotes: 2

Related Questions