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

16 lines
343 B
C#
Raw Normal View History

2021-05-11 09:25:07 +10:00
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}";
}
}
}