Posts

Area in MVC 5 with example - step by step

Image
In this post you will learn how to create Area in MVC 5, because creating Area in MVC 4 was quite different. In MVC 5 (Visual Studio 2013), Area option can be found under ‘Add Scaffold’ dialog. In this post, I will take you through step by step to setup and running Area in MVC 5. "Area in MVC 4" is available here.

Debugging MVC with Route Debugger Tool

Image
In this blog let's talk about a really cool tool for MVC developers ‘Route Debugger’. Sometimes a bug in your route can break application because it invokes either an incorrect controller or action. So, do not worry just install this tool in the application and it will make your route debugging easier like never before.

Category and Sub Category in single Drop Down List (DDL) in MVC

Image
In this article you will learn how to create a Drop Down List in MVC that can display States and its associated Districts in a single Drop Down List. You will learn this step by step.

Hands on ASP.NET GridView - eBook by me

Image
I would like to take this opportunity to let you know that C# Corner (MindCracker Community) have combined my 25 Articles on GridView series and published as an eBook with the title "Hands on ASP.NET GridView".

IIS Express immediately shutting down, hence web application stops running, on click 'Stop Debugging' in Visual Studio 2013 IDE

Image
I'm not sure why this change in 2013 IDE for web applications, it was completely different in Visual Studio 2012. In 2012 IDE, when we click on 'Stop Debugging', then IIS Express was continued running hence after any change in web application we just 'Build Solution' (Ctrl + Shift + B) and refresh the browser (specially Chrome). But now in Visual Studio 2013 things where little changed, when we click on 'Stop Debugging', then IIS Express stops running and hence web application also stops running. Let me tell you I didn't make any changes in settings J

Named Routes in MVC

Image
In this post you will learn what are ‘Named Routes’ and how to use them to generate URLs. I will explain this using problem and then solution approach.

Route Constraints in MVC

Image
In this post you will learn how to define ‘Route Constraints’ in MVC Application. Route Constraints allow us to apply a regular expression to a URL segment to restrict whether the route will match the request.

Getting Started with jQuery.tmpl (jQuery Templates) in MVC

Image
In this post you will learn how to use jQuery.tmpl (jQuery Template) JavaScript library in MVC for client side templating. I will take you through few easy steps to setup it and working.

Scaffold your ASP.NET MVC project with the MvcScaffolding package: Video

In this video you will learn how to scaffold the CRUD/Controller/DbContext using MvcScaffolding package developed by Scott Hanselman and Steve Sanderson.

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System

Lambda two tables and three tables inner join code samples