0
我剛開始學習ASP.NET,我試圖創建一個簡單的導航,但somohow我得到了錯誤的URL。我一直在尋找漫遊者,但大多數都是關於更復雜的網址。@ html.actionlink呈現錯誤的網址
我用這對我的導航
<nav>
<ul>
<li>@Html.ActionLink("Home", "index")</li>
<li>@Html.ActionLink("Domeinen", "Domain")</li>
</ul>
</nav>
網站呈現,但是當我點擊 「domeinen」 這使我想起
http://localhost:7498/Home/Domain
,而不是
http://localhost:7498/Domain
任何人都可以指向正確的方向嗎?