FavoriteLoadingAdd to favorites
namespace Vidly.Controllers
{
    public class MoviesController : Controller
    {
        public ActionResult Random()
        {
            Movie movie = new Movie() { Name = "Shrek!" };

        // THE RETURN METHODS BELOW
            // return View(movie);
            // return Content("Hello World!");
            // return HttpNotFound();
            // return new EmptyResult();
            // return RedirectToAction("Index","Home", new { page = 1, sortby = "name"}); 
        }
    }
}

Pin It on Pinterest

Share This