dotnettutorial-asp-dot-net-mvc/FirstMVCDemo/Controllers/HomeController.cs

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}";
}
}
}