AndyPike.Castlecasts.Website.Controllers.AdminController.UpdateEpisode C# (CSharp) Method

UpdateEpisode() public method

public UpdateEpisode ( [ episode, string tags ) : void
episode [
tags string
return void
        public void UpdateEpisode([ARDataBind("episode", AutoLoadBehavior.Always)] Episode episode, string tags)
        {
            episode.UpdateTags(tags, ' ');
            episode.Save();

            Flash["success"] = "The Castlecast was successfully updated.";
            RedirectToAction("Dashboard");
        }