我将我的 MVC 3 项目从 aspx 转换为 razor,这行有问题:ASPX:
<%@ Register TagPrefix="cc1" Namespace="WebControlCaptcha" Assembly="WebControlCaptcha" %>
剃刀:
@{
Register TagPrefix="cc1" Namespace="WebControlCaptcha" Assembly="WebControlCaptcha";
}
这是错误:
Compiler Error Message: CS1002: ; expected
提前致谢。