0

在我的主应用程序中,我想将插件 DLL 中的部分视图加载到主视图中。现在@Html.Partial(/~bin/PluginName.dll/PluginName.ViewName.vbhtml),我正在尝试查看部分视图。这是我得到的错误:

C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET
Files\root\b3a37fd6\7fe17e9b\App_Web_cucontractnumberplugin.cucontractnumbersearch.vbhtml.1
45470.d2zb2yt5.0.vb(43): error BC30456: 'BeginForm' is not a member of 
'System.Web.WebPages.Html.HtmlHelper'.

我有一个类可以在应用程序启动时将 dll 加载到影子目录中。在我的部分视图中(目前)所有的都是一个文本框。我最终想将搜索插件加载到我的主视图中。

这是我的部分观点:

@using(Html.BeginForm("ChangeCUNumber", "PluginName"))

@Html.TextBox("strCUNumber")


End Using

如果您需要任何澄清,请询问!谢谢!

4

1 回答 1

0

需要@Inherits System.Web.Mvc.WebViewPage在我的插件视图中添加

于 2012-06-27T19:50:18.200 回答