Always remain updated about current software development trends

Articles having tag: ASP.NET MVC 3

Involving Action Selection Process in ASP.NET MVC with ActionNameSelectorAttribute

We will see how we can involve action selection process in ASP.NET MVC with ActionNameSelectorAttribute with a real world use case scenario.

ASP.NET MVC 3 Custom Validation using Data Annotations

ASP.NET MVC 3 System.ComponentModel.DataAnnotations package provides a vast range of Data Annotations attribute, but there are certain scenarios where we need something which is very specific to our business requirements and we need to implement our own Validation...

How to Use Windows Azure Blob Storage Service With ASP.NET MVC Web Application

This blog post will walk you through on how to useWindows Azure Blob Storage service with ASP.NET MVC web application.

Generic Repository Pattern - Entity Framework, ASP.NET MVC and Unit Testing Triangle

We will see how we can implement Generic Repository Pattern with Entity Framework and how to benefit from that.

How to Work With Generic Repositories on ASP.NET MVC and Unit Testing Them By Mocking

In this blog post we will see how to work with generic repositories on ASP.NET MVC and unit testing them by mocking with moq

Building a Windows Azure App using Azure Queue, Azure Table and ASP.NET MVC Web Role

In this post, I will demonstrate a Windows Azure app using Azure Queue, Azure Table and a ASP.NET MVC 4 Web Role application. This post is explaining few initial steps for building a demo Azure app where asynchronous commands (write operations that changes...

EFMVC 1.0 Preview Released

A while ago, I have releasedEFMVC, a demo web app built using ASP.NET MVC 3, EF Code First and Unity. The EFMVC app has demonstrated many architectural patterns and practices such as Generic Repository, Repository pattern, Unit of Work pattern, Dependency Injection...

Autofac - My Choice of IoC Container

I have been using Unity for dependency injection since the early days of ASP.NET MVC framework. Recently I have evaluated other IoC containers and really impressed with Autofac. The next version of my codeplex projectEFMVCwill be use Autofac as IoC container. ...

Building JavaScript MVVM apps in ASP.NET MVC using KnockoutJS

JavaScript is getting more attention in modern web application development and increasing the popularity of JavaScript on every day. HTML 5 is making a revolution in web apps world and it is becoming a common platform for variety of scenarios. JavaScript is...

User Activity logging in ASP.NET MVC app using Action Filter and log4net

In this post, I will demonstrate how to use an action filter to log user tracking information in an ASP.NET MVC app. The below action filter will take logged user name, controller name, action name, timestamp information and the value of route data id. These...