Advertisement
goofer

Untitled

Apr 8th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. using System.Web.Mvc;
  5.  
  6. using Umbraco.Web.Mvc;
  7. using Umbraco.Web.Models;
  8.  
  9. /// <summary>
  10. /// Summary description for HomeController
  11. /// </summary>
  12. public class HomeController : RenderMvcController
  13. {
  14.     public override ActionResult Index(RenderModel model)
  15.     {
  16.         return View("Index", model);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement