How to use Url.Action() in Razor helper from App_Code folder ?
I tried according to Why I cant use Html.RenderPartial in razor helper view File in App_Code Folder?
@using System.Web.Mvc.Html
@helper Tabel(System.Web.Mvc.HtmlHelper html)
{
@Html.Raw(Url.Action("Index", "Home"))
}
but got compile error
CS0103: The name 'Url' does not exist in the current context
ASP.NET MVC4 and jquery are used.