I am trying to create a razor web helper something like this
@helper DisplayForm() {
@Html.EditorForModel();
}
But this gives the error "CS0103: The name 'Html' does not exist in the current context".
Is there any way to reference html helpers within web helpers?