2014-01-17 33 views
0

在我的.cshtml文件,我得到一个错误的地方我用@ Html.TextBoxForEmbeddedResourceVirtualPathProvider和@ Html.TextBoxFor(LINQ表达式)

这里是一个示例代码:

@model WebComposite.Models.CompositeModel 

<label for="name">Name</label> 
@Html.TextBoxFor(m => m.name) 

错误:

Error #1: 
'System.Web.Mvc.Html.InputExtensions.TextBoxFor<TModel,TProperty>(System.Web.Mvc.HtmlHelper<TModel>, System.Linq.Expressions.Expression<System.Func<TModel,TProperty>>)' cannot be inferred from the usage. Try specifying the type arguments explicitly. 

Error #2: 
One or more types required to compile a dynamic expression cannot be found. Are you missing a reference? 

有什么想法吗?

万一别人

回答

0

想知道,这里是我如何解决它:

1. right click on the project -> select properties 
2. select Application 
3. change "target framework" (I was at 4.5, so I changed it to 4) 
4. change "target framework" to whatever it was before step 3 

web.config中被清理,适当引用添加,做一个构建,一切都应该恢复正常