asp.net - MVC Package load (NuGet) -


after installing package nuget console (called bootstrap-table), in packages.config can see package added cannot use it, nor htmlhelpers coming it.

i tried reinstalling package, restarting vs2013 doesn't seem help.

when run sample project simonray can see htmlhelpers, project doesn't use package precompilled dll. here screenshot nuget package manager, , mine projects: http://prntscr.com/75gjar

any advice?

in web.config in views folder, need add namespace. equivalent adding using statement in c#, add last line:

<system.web.webpages.razor>   <pages pagebasetype="system.web.mvc.webviewpage">     <namespaces>       ...       <add namespace="bootstraptable.web" /> 

note example project linked has line included here.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -