本文介绍了错误21找不到类型或命名空间名称'JsonValueProviderFactory'(您是否缺少using指令或程序集引用?)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在bin中添加了system.web.mvc引用和system.web.mvc.dll ..但是当我在global.asax中使用以下代码时,它在MVC2中给出了上述错误



 protected void Application_Start()< br /> 
{< br />
AreaRegistration.RegisterAllAreas();< br />
RegisterRoutes(RouteTable.Routes);< br />
ValueProviderFactories.Factories.Add(new JsonValueProviderFactory());< br />
}



Plz帮助我错过了什么???。这个JsonValueProviderFactory()给出错误

解决方案



I have already added system.web.mvc reference and system.web.mvc.dll in bin ..But when i am using following code in global.asax it is giving above error in MVC2

protected void Application_Start()<br />
       {<br />
           AreaRegistration.RegisterAllAreas();<br />
           RegisterRoutes(RouteTable.Routes);<br />
           ValueProviderFactories.Factories.Add(new JsonValueProviderFactory());<br />
       }


Plz help what i am missing???.tthis JsonValueProviderFactory() is giving error

解决方案




这篇关于错误21找不到类型或命名空间名称'JsonValueProviderFactory'(您是否缺少using指令或程序集引用?)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 02:44