Hi,
Does anyone know if there's a way to manage users/roles in the asp.net membership database using a web-based interface you can access remotely?
I need one which doesn't require installation to the Default Website.
Thanks
|
1
|
Hi, Does anyone know if there's a way to manage users/roles in the asp.net membership database using a web-based interface you can access remotely? I need one which doesn't require installation to the Default Website. Thanks
|
|||
|
|
|
|
Well, the asp .net object for managing users and membership information is fairly straightforward, why not do it yourself? |
||
|
|
|
There is a great article here.
|
|||
|
|
|
|
Here is a quick and dirty solution. Copy your ASP.NETWebAdminFiles to a directory on your server. Make it a virtual directory. Open up the App_Code/WebAdminPage.cs file and coment out lines around 488 - 495 the code will look like this: // Changed by Jason so I can use this remotely!!!
Then you can now use this tool remotely. Just user your browser to pull up the newly created virtual directory passing in the correct parameters. For example http://myservername/WebAdminFiles/default.aspx?applicationPhysicalPath=C:\Websites\Application\&applicationUrl=/ApplicationURL The other thing I did was to enable windows authentication on this folder so that I have to have an admin account on the server before I can access this url. This is important because once you enable this tool anyone can browse and delete users if they pull up the url. |
||
|
|
|
|
By the way the ASP.NETAdmin file are located on your machine here: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETWebAdminFiles enjoy. |
||
|
|
|
|
I just modify the connection string in my local web.config on the development version of my site to point to the remote database and then from within Visual Studio went to: Project | ASP.NET Configuration This opened up the local configuration site but talking to the remote database, allowing me to manage users/roles etc from there. Obviously this assumes that you have a database server to connect to rather than the file based setup in APP_DATA. |
||
|
|