-->

Monday, November 23, 2015

How to determine version of MVC application

How to determine version of MVC application

In this article, I will show you how to check  MVC version of application. There are two methods, through which we can get the version of MVC. In the first method we use property of System.Web.MVC namespace. But, How to check, check the mentioned snap shots.

1. Expand References folder 
2. Right click on System.Web.MVC namespace also select property , check the mentioned snap.

II-Method

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace WebApplication9.Controllers
{
    public class HomeController : Controller
    {
        // GET: Home
        public string Index()
        {
            return typeof(Controller).Assembly.GetName().Version.ToString();
        }
}
}

Read other related articles

Also read other articles

© Copyright 2013 Computer Programming | All Right Reserved