MVC 3 プロジェクトを aspx から razor に変換しましたが、次の行に問題がありました: ASPX:
<%@ Register TagPrefix="cc1" Namespace="WebControlCaptcha" Assembly="WebControlCaptcha" %>
かみそり:
@{
Register TagPrefix="cc1" Namespace="WebControlCaptcha" Assembly="WebControlCaptcha";
}
エラーは次のとおりです。
Compiler Error Message: CS1002: ; expected
前もって感謝します。