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

            myStoryVariable.SetPerson1(Request.Query["person1"]);
            myStoryVariable.SetPerson2(Request.Query["person2"]);
            myStoryVariable.SetAnimal(Request.Query["animal"]);
            myStoryVariable.SetExclamation(Request.Query["exclamation"]);
            myStoryVariable.SetVerb(Request.Query["verb"]);
            myStoryVariable.SetNoun(Request.Query["noun"]);

            return(View("Story", myStoryVariable));
        }