using System.Collections.Generic;
namespace MVCFirstTest.Controllers
public class HomeController : Controller
public ActionResult Index( )
if(args.Equals("sample"))
string filePath = "~/sample.pdf";
return File(filePath, "application/pdf");
else if(args.Equals("gotoabout"))
return RedirectToAction("About");
else if (args.Equals("login"))
return Content(string.Format("You entered: {0}",args), "text/plain");
public ActionResult About()
return Content("About content here", "text/plain");