您好我想創建一個聲明Html幫助器內MVC部分頁面的方法,一切工作正常。但是當我想使用內置的Html擴展方法時,我看到沒有擴展方法。此外,我檢查了我的視圖的webconfig文件,以添加System.Web.Mvc.Html
命名空間。一切都很好,但我不知道爲什麼它不起作用。Html擴展方法不能在MVC部分頁面訪問
任何意見將是有益的。
編輯:這裏是我的代碼:
@using WebVoter.ViewModel
@using System.Web.Mvc.Html
@helper GetVoteList(IList<VoteQuestionViewModel> voteQuestionList)
{
<div class="head-panel">
@*For example ActionLink is not accessible here*@
@Html.ActionLink(....);
</div>
}
你能展示你的代碼嗎? –
您是否添加了使用說明?類似於部分類,這需要在你的局部視圖中。 – BlueChippy
你是否嘗試在視圖中明確使用? – tschmit007