Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET WSAT (Website Administration Tool) and Custom Membership Providers

I'm building an ASP.NET MVC applicaiton that will have custom role and membership providers. I have been looking into adminstration tools to save us some time, WSAT has crossed my path. It looks good at a glance, it's all open source and very simple if it doesn't work I can fix it myself.

First question is have any of you used WSAT for a product system in the past. Is it worth while, should I consider it and what reasons are there for not using it?

Second question, does anyone know how well WSAT works with custom providers?

Thanks for your feedback.

like image 466
Odd Avatar asked Oct 02 '08 01:10

Odd


People also ask

Which tool can be used to manage role and user administration?

The ASP.NET Web Site Administration Tool (WSAT) can be used in tandem with the Membership and Roles application services to manage user and role information for your website.

Which of the following ASP.NET service enables the management of user accounts in a system?

ASP.NET offers a Roles framework for defining roles and associating them with user accounts. With the Roles framework we can create and delete roles, add users to or remove users from a role, determine the set of users that belong to a particular role, and tell whether a user belongs to a particular role.

Which method of the role class will enable you to add an array of users to a role?

The BindRolesToList method starts by calling the Roles class's GetAllRoles method, which returns a string array containing the roles in the system. This string array is then bound to the Repeater.


1 Answers

MVC WSAT appears to be the tool of choice for providing Web site Administration functionality to ASP.NET MVC web sites.

Also, although the ASPNetWSAT tool is no longer available on Codeplex, it is still available in places. See this thread: ASP.Net WSAT (Web Site Administration) Starter Kit. What happened? and check the last post!

To address your specific question, the MyWSAT tool is fairly well written and robust, and has been used by quite a few people within their own websites (many people were quite upset when it was removed from Codeplex!). Short of writing your own website administration tool, or paying for a commercial component, it's about the best out there.

The MVC WSAT tool is a rewrite of the original MyWSAT tool, made specifically for ASP.NET MVC-developed websites, and MVC WSAT should be used instead of MyWSAT for MVC sites.

EDIT:
Since approximately April of 2010, the MyWSAT project has been made available again by the original author on Codeplex!

Get it here: http://mywsat.codeplex.com/

like image 138
CraigTP Avatar answered Sep 29 '22 09:09

CraigTP