How to check the version of ASP.NET MVC running on a server with an .aspx file?

For example, for the .NET version, I decided:

"The .NET version is " : <%= System.Environment.Version.ToString()%> 

But what about the ASP.NET MVC version?

Thanks in advance!

+7
source share
1 answer
 typeof(Controller).Assembly.GetName().Version 
+12
source

All Articles