2021-05-11 09:25:07 +10:00

16 lines
343 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace FirstMVCDemo.Controllers
{
public class HomeController : Controller
{
public string Index(int id, string name)
{
return $"Hello MVC Application {id} and Name = {name}";
}
}
}