Follow me (@troygoode) on Twitter!
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
Tips are welcome, but not expected.
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
MvcMembership.dll
.
- 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.
- Copy the directory
SampleWebsite\Areas\UserAdministration
to{targetSite}\Areas
. (If no "Areas" folder exists in your target site, you can just add one.) - Ensure your application registers areas on startup:
Application_Start
shold callAreaRegistration.RegisterAllAreas()
. - Copy the file
SampleWebsite\Content\MvcMembership.css
to{targetSite}\Content\
.
- 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);
}
- The starter kit relies on your site having a site master page. A default ASP.Net MVC site is generated with a
Site.Master
in the\Views\Shared
folder. If you want to isolate something to the starter kit you could put it in\Areas\UserAdministration\Views\Shared
. - 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>
<% } %>