コード例 #1
0
        public ActionResult AddTagToNote(string tagName, int noteId)
        {
            TagDAO.AddTagToNote(tagName, noteId);

            return(RedirectToAction("../note/index"));
        }