The starter kit currently consists of three things:
- 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.
- An MVC 3 Portable Area which contains the controllers, models and views needed to administer users & roles.
- A sample website which consumes the Portable Area.
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
Some screenshots of the UI are available on my blog. While that blog post announced an older version of the project, the screenshots still accurately reflect the current version.
Note As of now this uses MVC 3 with razor views, so your project needs to be MVC 3. It uses MVCContrib which in turn uses MVC Futures.
Note: If you have an ASP.Net MVC 1.0 project, you can convert it to ASP.NET MVC 2.0 following these instructions: http://www.asp.net/learn/whitepapers/what-is-new-in-aspnet-mvc/#_TOC2
- After getting the source code build it using your preferred IDE or using the included
Build.Debug.bat
orBuild.Release.bat
batch files. - Add a reference from the target site to
UserAdministrationArea.dll
.
- The UserAdministrationArea dll depends on MvcMembership.dll (and MvcContrib).
- The MvcMembership.dll depends upon the PagedList.dll assembly, which you can find packaged with the MvcMembership source code, in the bin of the SampleWebsite, or downloaded from GitHub.
- Make sure you've configured your
web.config
properly for Membership and Roles. If you aren't sure of how to do this, take a look at the first two articles in this series by Scott Mitchell at 4GuysFromRolla. Hint: Use C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe, and then grant your web site's application pool user access to the database. - Change the "Administrator" value of the
Authorize
attribute in theUserAdministrationController.cs
file (line 11) to whatever role you want to require a user to have in order to view/use the User Administration area. If a user tries to navigate to the User Administration area without this role, they will be redirected to the login page (even if they're already logged in). - Configure the
system.net/mailSettings/smtp
node in your web.config file with the appropriate SMTP settings so that emails can be sent for password change/reset events. - Make sure the user identity of your application pool has sufficient permissions to the aspnet database.
- Add the following code to your
global.asax
to keep the membership system updated with each user's last activity date:
protected void Application_AuthenticateRequest() { if(HttpContext.Current.User != null) Membership.GetUser(true); }
- Add the following to the application_Start method of you Global.asax.cs:
PortableAreaRegistration.RegisterEmbeddedViewEngine();
- The starter kit relies on your site having a site master page (_Layout.cshtml) and a _ViewStart.chtml. A default ASP.Net MVC razor site is generated with a
_layout.cshtml
in the\Views\Shared
folder and a_ViewStart.chtml
in the\Views
folder. That master page needs to have a secion "Headsection" rendered in the "head" of the page:
<html> ... <head> @RenderSection("HeadSection", false) </head> ...
- That master page and any contained views will need to specify their Area when generating links, even views not in an area (so the default master page would requires fixes). If the link is not to a page in an area (typical), then an Area of "" (empty string) should be specified. For instance, a call to generate a link to the homepage should look like so:
Html.ActionLink("Home", "Index", "Home", new {Area = ""}, new {})
- Add a User Administration link to your master page (change "Administrator" to whatever role you want to use):
<% if (Roles.IsUserInRole("Administrator")){ %> <li><%= Html.ActionLink("User Administration", "Index", "UserAdministration", new { Area = "UserAdministration" }, new { })%></li> <% } %>
- If you don't have an "Areas" folder, create one, and copy the web.config from the "Views" folder into it. Otherwise make sure there is a web.config in there (this is needed for Portable Areas).