Reputation: 7579
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
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