asp.net mvc - MVC ASPX To Razor - Register webcontrol -


i converted mvc 3 project aspx razor, having problem line: aspx:

<%@ register tagprefix="cc1" namespace="webcontrolcaptcha" assembly="webcontrolcaptcha" %> 

razor:

@{ register tagprefix="cc1" namespace="webcontrolcaptcha" assembly="webcontrolcaptcha"; }  

here error:

compiler error message: cs1002: ; expected 

thanks in advance.

you can put, in web.config inside views folder, following key:

<configuration>    <system.web>     <pages>       <controls>         <add assembly="webcontrolcaptcha" namespace="webcontrolcaptcha" tagprefix="cc1" />       </controls>     </pages>   </system.web>  </configuration> 

Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -