I am trying to update this tutorial on implementing Facebooks BigPipe to razor.
There is a html helper extension that adds a pagelet to a list, and then outputs a holdin
Change your method to be not void, but returning MvcHtmlString
public static MvcHtmlString OutputText(this HtmlHelper helper, string text) {
return New MvcHtmlString(text);
}
Than use this as you used to
@Html.OutputText("FooBar");
Idea is inspired by the fact that almost every input(and other) extension method in MVC returns MvcHtmlString