I'm following the tutorial located at: http://www.asp.net/learn/mvc/tutorial-20-cs.aspx
I created my own .Menu() method to return a string of menu items. No matter what I do, I can't get my menu items to appear. If I set a breakpoint at the return of the .Menu() method and copy it's results to the correct location in Site.Master, everything looks fine. It's returning the correct string, it's just not displaying them.
I even tried creating a simpler method:
public static string Test(this HtmlHelper helper)
{
return ("Test!");
}
And using it here:
<div id="title">
<h1>My MVC Application <%Html.Test(); %></h1>
</div>
But this text never appears on my page. Any idea what I'm doing wrong?