Regarding details usage of mvc toolkit & mvc contrib - asp.net-mvc

people use all utility , controls mvc toolkit & mvc contrib provide but my question is there any specific web site which guide me in details how to use mvc toolkit & mvc contrib related controls and classes. i can download those project from codeplex but without knowing how to use those then how can i implement those things in my project. so my request that please guide with all tutorial and docs for mvc toolkit & mvc contrib for using in project. i need details guidance for implementation in my project. thanks

I am the coordinator of the Mvc Controls tookit. You may find the list of all Mvc Controls toolkit tutorials here. Moreover, the codeplex web site contains a detailed documentation of all its featuree. See here.
Unluckly all asp.net mvc stuffs require a greater learning effort than the corresponding webforms stuffs because they give an higher control on the architecture of your application.

Related

Integrate Syncfusion with ASP.NET MVC 4.0

I am using Syncfusion with ASP.NET MVC 4.0 with C#.
I have all the code ready but just need to implement in My code. I have create the demo code with MVC 5 and now I have to implement it in MVC 4 so what is the process and what are the necessary files I need to include by manually or by nuget?
I tried to implement but in CSHTML I don't know why EJ() is not able to use.
Any help will be appreciate..!!!
To configure and install Syncfusion assemblies in your application using Nuget packages, refer to the below documentation link:
https://help.syncfusion.com/aspnetmvc/installation-and-deployment#configuring-syncfusion-nuget-packages-in-visual-studio
To manually integrate into existing application, refer to the below documentation link:
https://help.syncfusion.com/aspnetmvc/getting-started#for-existing-applications

Modular/Plugin Framework In ASP.Net MVC 5

I want to create a web application using ASP.Net MVC5. It is a big enterprise application and having lots of modules, earlier i worked on Siverlight and use the Prism architecture.
I already Google this and found lots of posts but most of them are at least 1 year old so just want to know Is there something new coming introduced which help me to implement the plugin framework.
Hi I was also in search of similar things. I found below helpful.
MVC plug in architecture
MEF in MVC

What is the difference between ASP.Net MVC and ASP.Net MVC2?

I've decided to take the suggestion from Robert Harvey on this site and build an application using ASP.Net MVC.
When I went to Bing for a brief overview, I saw there was an MVC2.
What is the difference and should I care?
MVC2 is backwards compatible with MVC, so MVC2 is the one you will be using.
For the new features in version 2, see here:
http://weblogs.asp.net/scottgu/archive/2010/03/11/asp-net-mvc-2-released.aspx
Just use MVC v2 if you have the option. It is an evolved version of MVC 1 with many useful enhancement. See ASP.NET MVC 2 Released for more info.

Are there add-on libraries or tools available for ASP.NET MVC development?

My first experience with ASP.NET MVC and the Entity Framework has raised my interest in this framework and I would like to implement some basic applications, covering the basic requirements of real-world web applications. So far the support given by VS 2008 is already impressive.
For some areas however, it might be a time saver to use existing add-ons or libraries of all kind. Are there already commercial or open solutions which I should take a look at?
Some of them:
S#arp architecture
MVCContrib
MVC Project Awesome
Be sure to check out example projects.
Telerik has made some UI stuff too (haven't checked out yet).
You might be interested to check out other view engines like:
Spark (this one kicks a$$)
NHaml
Haack recently posted about .less - might be worth checking out for managing css
T4MVC by David Ebbo library is a nice solution how to make your asp.net mvc app more strongly typed.
For UI testing - Watin framework.
Here's Jimmy talking about implementation and solution of common problems when doing UI testing. Seems to me that he prefers Gallio + NBehave + MbUnit combo but i personally like BehaveN (it doesn't need test runner, is not tied with particular unit test framework).
HtmlAgilityPack is a nice tool if working with raw html is necessary.
MvcTurbine might simplify technical part of your asp.net-mvc project.
Found useful MvcExtensions extension made by Kazi Manzur Rashid.
For managing javascript and css - Chirpy.
Object to object mapper for MVVM support - AutoMapper.
elmah is great for error logging.
Not necessarily MVC specific, but:
MVC lends itself to take advantage of all the jQuery UI controls and pretty things.
There's also Elmah, and StructureMap for DI/IOC.
Nothing much else to add here except that xVal is a really nice validation library, utilising jQuery. My company is currently in the process of moving from a 'roll-your-own' solution to this.
There are some useful links at the bottom of this post.
Including:
MVC HtmlHelper for Gravatar
Paging HtmlHelper for ASP.NET MVC
Marquee and GridView HtmlHelpers for ASP.NET MVC
ReCAPTCHA HtmlHelper (and also a solution to use ReCAPTCHA in ASP.NET MVC)
ASP.Net MVC Extension method to create a Security Aware Html.ActionLink
CheckboxList Helper
Also, keep an eye on some of the big component developers. Telerik has a demo of some MVC components and I hear DeveloperExpress has some on the way too.
Just to add details to Telerik's MVC support:
We just kicked-off our official support for ASP.NET MVC with last week's CTP. Our new UI Extensions for MVC will aim to bring the productivity of WebForms to MVC without violating any MVC concepts. Our new extensions are built from the ground-up specifically for MVC and they will leverage jQuery on the client for all behaviors and Ajax.
Further, the Extensions are completely open source, licensed under the Microsoft Public License (MS-PL) - the same license that the ASP.NET MVC framework ships under. You can find the CTP source today on Telerik.com or on CodePlex:
http://telerikaspnetmvc.codeplex.com/
All of that said, this is our early support. We will ship the first 3 UI Extensions in November and build from there in 2010. The first planned Extensions are:
Grid
Menu
TabStrip
You can find more details, demos, and downloads on Telerik.com:
www.telerik.com/mvc
Hope that helps.

ASP.NET MVC 2.0 overview information?

I have heard that Microsoft is developing a MVC 2.0 platform for Visual Studio 2010.
Does anyone have a good source of information about the upcoming project?
Specifically, an overview of the changes and new features?
The roadmap was recently published on the CodePlex site:
ASP.NET MVC Roadmap
There's a Roadmap for MVC, including 2.0, at CodePlex. Also, you may want to follow Phil Haack's blog -- lot's of info there.
The new strongly typed Html helpers are really nice and work well arlready in the MVC futures library.

Resources