Ev.
Ev.

Reputation: 7579

Graphical Interface for adding users to aspnet_Membership and aspnet_Users etc

This might be a pretty basic question, but how do you add new users to the aspnet_Users table in a ASP.Net 2.0 app?

I know I could do it using a SQL script, and being mindful of the associations, but I know I've seen a graphical interface for it... I can't find code for adding new users in the web app I'm maintaining (it might be in there but I can't find it).

Can anyone point me in the right direction?

Let me know if you need more info!

-Ev

Upvotes: 0

Views: 1624

Answers (3)

ScottE
ScottE

Reputation: 21630

If you're using VS.Net, go to Website > asp.net configuration

Upvotes: 1

keyboardP
keyboardP

Reputation: 69392

In Visual Studio, in the solution explorer on the right, there should be an "ASP.NET Configuration" icon (Looks like the world and a hammer). Click on that and you can configure your site via its GUI. If your just adding basic users to the table, this would be an easy way. However, it does mean you have to create accounts for them manually. Usually, I'd stick to SQL script or SQL Management Studio (as Cheeso) pointed out.

Upvotes: 1

Cheeso
Cheeso

Reputation: 192657

I always used SQL Mgmt Studio.

Upvotes: 0

Related Questions