示例#1
0
        public ActionResult ViewMadLib()
        {
            StoryVariable myStoryVariable = new StoryVariable();

            myStoryVariable.SetNoun1(Request.Query["first-noun"]);
            myStoryVariable.SetVerb1(Request.Query["first-verb"]);
            myStoryVariable.SetAdverb(Request.Query["first-adverb"]);
            myStoryVariable.SetVerb2(Request.Query["second-verb"]);
            myStoryVariable.SetNoun2(Request.Query["second-noun"]);
            return(View(myStoryVariable));
        }