1
ActionLinkForAreas鏈接擴展是否可以使用參數+自定義路由?S#arp ActionLinkForAreas +參數+自定義路由 - 已更新!
我有一個存在匹配我的作用,這是一個路線:
routes.MapRoute("Profile", "profile/{artist}/{action}", new {controller="Profile", action="Index"});
但是,當我打電話ActionLinkForAreas是這樣的:
<%= Html.ActionLinkForAreas<ProfileController>(x => x.Index("DJ"), "DJ") %>
它返回/資料/藝術家= DJ在那裏爲我希望它會在我的路線被設置時返回/ profile/DJ。
如果我調用ActionLink它會返回正確的URL,我已經在Northwind示例項目中測試了這一點,並且得到了相同的結果。
我錯過了什麼嗎?
注意:我在同一地區測試這個...如果我做同樣的事情,但從另一個區域,它返回/配置文件/沒有任何參數。 – 2010-07-17 23:53:46