這應該有希望是一個簡單的配置問題。html.actionlink與.net 4.0呈現空鏈接
當我的應用程序的目標.NET 3.5
此代碼
<%= Html.ActionLink("Forgot your password?","ForgotPassword") %>
呈現此:
<a href="/Account/ForgotPassword">Forgot your password?</a>
當我的應用程序的目標.NET 4.0
相同的代碼將呈現:
<a href="">Forgot your password?</a>
這是下降的網址部分。
後向兼容性據說是在我的web.config中啓用的。
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
想法?