0

我将此代码放在_AppStart.cshtml中以在数据库中创建表(VS 2012)问题是WebSecurity上存在错误,即当前上下文中不存在名称WebSecurity

@使用系统.Web.安全;@{

WebSecurity.InitializeDatabaseConnection("MembershipExample","UserProfile","UserId","UserName", true); }

4

1 回答 1

0

您需要添加对System.Web项目的引用(在右侧的项目管理器中,右键单击References并选择Add)。

然后,您可以将 a 添加using System.Web.Security到您的代码文件中。

于 2013-02-16T21:18:00.287 回答