ASP.net membership webforms admin userlist

I have been using the ASP.net membership system, with code such as:

<asp:Login runat="server" BorderStyle="Solid" BackColor="#F7F7DE" BorderWidth="1px" BorderColor="#CCCC99" Font-Size="10pt" Font-Names="Verdana" CreateUserText="Create a new user..." CreateUserUrl="register.aspx" HelpPageUrl="help.aspx" PasswordRecoveryUrl="getPass.aspx" UserNameLabelText="Username:" OnLoggingIn="OnLoggingIn" OnLoginError="OnLoginError" > <TitleTextStyle Font-Bold="True" ForeColor="#FFFFFF" BackColor="#6B696B"> </TitleTextStyle> </asp:Login> 

Works great! But from within my admin area I would like a pages list of users, with the ability to edit the users settings.

Is there a built in control for this (I rmember seeing one but I cant find it), or do I have to code it myself

1 Answer

There are no standard built-in control for doing this. You need to code it yourself or search for custom controls.

However you maybe looking for ASP.NET Web Site Administration Tool and it's security tab. This is not a control but set of pages coming with .net framework. You can run this tool from Project menu of Visual Studio (Project - ASP.NET Configuration) or by adding the WebAdmin.axd file to the end of the application root URL (for example ). For security reasons you can use this tool only from computer where your application is hosted.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like