From b575d2c337b8d462b7229217163f671621fc2e03 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 12 Dec 2013 11:14:22 -0800 Subject: [PATCH] Added action result sample. --- MvcSample/HomeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MvcSample/HomeController.cs b/MvcSample/HomeController.cs index 2e38aa8384..b992469504 100644 --- a/MvcSample/HomeController.cs +++ b/MvcSample/HomeController.cs @@ -13,7 +13,7 @@ namespace MvcSample { return new ContentResult { - Content = "Hello World" + Content = "Hello World From Content" }; } }