解决方法
我发现这个
MembershipStarterKit从
TroyGoode在github上:
What is the Asp.Net MVC Membership Starter Kit?
The starter kit currently
consists of two things:
- A sample website containing the
controllers,models,and views needed
to administer users & roles.- A library
that provides testable interfaces for
administering users & roles and
concrete implementations of those
interfaces that wrap the built-in
Asp.Net Membership & Roles providers.Out of the Box,the starter kit gives
you the following features:
- List of Users
- List of Roles User
- Account Info
- Change Email Address
- Change a User’s Roles
它看起来像是基于MVC 2,我不知道它在任何其他的工作。你确实有代码,所以在MVC 3或Web窗体中不应该很难重用。
更新
同时,我分叉了这个项目,并将所有内容更新到MVC 3剃须刀上。我也将视图打包成一个便携式区域(mvcContrib)。
你可以在这里找到叉子:
07002