using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
var url = Request.RawUrl;
var model = new ManageUserViewModel()
FirstName = "[HttpGet] Index(): " + url
public ActionResult Index(ManageUserViewModel model)
var url = Request.RawUrl;