All the searches I've come up with talk about regular asp.net where there is a code behind page or you are accessing an asp.net control of some sort.
Since there is no code behind in the master page for Asp.net MVC how would I put a sub page name in plain text/html just under the master page title?
<div id="header">
<div id="menu">
<ul id="main">
<li class="current_page_item" id="menu"><%= Html.ActionLink("Home", "Index", "Home")%></li>
<%-- <li><%= Html.ActionLink("About", "About", "Home")%></li>--%>
</ul>
</div>
<div id="logo">
<h1><span>Defect Severity Assessment Tool</span></h1>
<p id="subpage"><%--*What goes here?*--%></p>
</div>
</div>
<div id="content">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
<div id="footer">
</div>
</div>