using System.Collections.Generic;
namespace ActionResultProj.Controllers
public class HomeController : Controller
public ActionResult Index(string input)
string fileName = "~/Sample.pdf";
return File(fileName, "application/pdf");
else if (input == "gotoabout")
return RedirectToAction("About");
else if (input == "login")
return new ContentResult() { Content = "You entered:" + input, ContentType = "text/plain" };
public ActionResult About()
return Content("About content here", "text/plain");