1

背景不能在局部视图中使用Html助手?

我已经在我的控制器

[HttpGet] 
public ActionResult GetModulePropertyName(string moduleTypeValue) 
{ 
    var moduleKindId = _repository.GetModuleKindId(moduleTypeValue); 
    var modulePropertyNames = _repository.GetModuleKindPropertyNames(moduleKindId); 
    return PartialView(modulePropertyNames); 
    } 

modulePropertyNames可能包含的List of strings可能是空以下方法。

我想做

我想创建一个文本框传递到与占位符或标签作为字符串局部视图每个字符串,用户键入一些文字出现,我会在以后检索什么。

我一直在做

我现在在做以下,但它说无法解析符号TextboxFor

@foreach (var names in Model) 
{ 
    <div class="input-block-level">@Html.TextBoxFor(names, new {@placeholder = names})</div> 
} 

这里是我”的面积的web.config一直在努力

<?xml version="1.0"?> 

<configuration> 
    <configSections> 
    <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 
     <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> 
     <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> 
    </sectionGroup> 
    </configSections> 

    <system.web.webPages.razor> 
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
    <pages pageBaseType="System.Web.Mvc.WebViewPage"> 
     <namespaces> 
     <add namespace="System.Web.Mvc" /> 
     <add namespace="System.Web.Mvc.Ajax" /> 
     <add namespace="System.Web.Mvc.Html" /> 
     <add namespace="System.Web.Optimization"/> 
     <add namespace="System.Web.Routing" /> 
     </namespaces> 
    </pages> 
    </system.web.webPages.razor> 

    <appSettings> 
    <add key="webpages:Enabled" value="false" /> 
    </appSettings> 

    <system.web> 
    <httpHandlers> 
     <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/> 
    </httpHandlers> 

    <!-- 
     Enabling request validation in view pages would cause validation to occur 
     after the input has already been processed by the controller. By default 
     MVC performs request validation before a controller processes the input. 
     To change this behavior apply the ValidateInputAttribute to a 
     controller or action. 
    --> 
    <pages 
     validateRequest="false" 
     pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" 
     pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" 
     userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> 
     <controls> 
     <add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> 
     </controls> 
    </pages> 
    </system.web> 

    <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 

    <handlers> 
     <remove name="BlockViewHandler"/> 
     <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" /> 
    </handlers> 
    </system.webServer> 
</configuration> 
+0

哪里是该文件?向我们展示'Views \ Web.config'。 – SLaks

+0

它在我一直在努力的区域内。我所指的控制器和视图与硬件相同。我仍然需要发布我的web.config我的web.config区域? – Cybercop

+0

向我们显示'Areas \ Hardware \ Views \ Web.config'。它可能没有Html扩展命名空间 – SLaks

回答

1

Html.TextBoxForExpression<Func<List<Model>>, TProperty>作为第一个论点换货。 试着用另一种方式:

@for (int i = 0; i < Model.Count; i++) 
{ 
    @Html.TextBoxFor(name => name[i], new {@placeholder = names}) 
} 

或者使用Html.TextBox()

@for (int i = 0; i < Model.Count; i++) 
{ 
    @Html.TextBox("name[" + i + "]", Model[i], new {@placeholder = names}) 
} 
+0

工作,但说lambda表达式不适用于字符串:( – Cybercop

+0

如果你使用lambda - 你应该使用Html.TextBoxFor,否则你需要Html.TextBox。请看看我更新的答案。 –

+0

thanks!working! – Cybercop