I have an HtmlHelper function that returns a MvcHtmlString
and which I'd like to call in an inline helper like this:
@helper JsCss()
{
Html.Script("jquery/jquery-1.6.2", cdn: true)
}
I call the inline helper from my page:
<head>
@JsCss()
</head>
...trouble is: nothing shows up on the page! it seems I have to do this:
@helper JsCss()
{
<text>
@Html.Script("jquery/jquery-1.6.2", cdn: true)
</text>
}
so I guess the thing is I have to "print" the return value of my Html.Script
call to the page... how else could I do this?