BuildFeed/BuildFeed/Code/MvcIntrinsics.cs
Thomas Hounsell f34cd71463 (╯°□°)╯︵ ┻━┻
I was going to finish off vNext, instead I flipped some tables and
reorganised loads of stuff.
2016-07-15 14:39:30 +01:00

12 lines
389 B
C#

using System.Web.Mvc;
using System.Web.WebPages;
namespace BuildFeed.Code
{
public static class MvcIntrinsics
{
public static AjaxHelper Ajax => ((WebViewPage)WebPageContext.Current.Page).Ajax;
public static HtmlHelper Html => ((WebViewPage)WebPageContext.Current.Page).Html;
public static UrlHelper Url => ((WebViewPage)WebPageContext.Current.Page).Url;
}
}