Tag Archives: ASP.NET MVC 2 simplest sample

ASP.NET MVC 2 simplest sample – video

1. Create MVC 2 project.   2. Add MathLib class into Models folders.   using System; using System.Collections.Generic; using System.Linq; using System.Web;   namespace MvcApplication1.Models {   public class MathLib   {     public static int Add(int num1, int num2) … Continue reading

Posted in .Net | Tagged | 1 Comment