Reputation: 821
I have a Silverlight application. I want to make a prototype of this application using HTML5 and JavaScript. I will be using the ASP.NET MVC 4 framework. How can I get started. Are there any frameworks that I can use. My Silverlight app uses some fancy third party UI Controls to present data in Dashboards, Grids etc. Are there some equivalent for HTML5 or ASP.NET MVC4. My general question is how to move from Silverlight to HTML5/JavaScript/ASP.NET MVC 4?
Thanks.
Upvotes: 2
Views: 509
Reputation: 14774
There are many JavaScript frameworks out there, but one of the most popular is jQuery (which I'm sure you may have heard of). As well as being a great DOM manipulator, it also has a UI library that has a ton of features like accordions, tabbed interfaces and progress bars etc which are super easy to get going with.
On the other hand, if you're after pretty heavy app development, I hear good things about ExtJS:
http://www.sencha.com/products/extjs/
There won't be a silver bullet to developing with JS and HTML5, so it's best to find what will suit your specific needs. Ignore the hype and go with what is right for you.
If you're after something more template driven, then I hear Angular JS is great:
But, this is more for your JS apps rather than 'websites', as it is totally dependent on JS and can't work without it (no graceful degradation).
There are tons of frameworks out there, and many come and go. It's best to do some Googling!
Good luck.
Upvotes: 2