Hi, I am using the starter kit and I see where I can add users but theres no where to delete or change their passwords with out going directly into the database to do this. I cant change the password either because it looks encrypted in the database. Is
there any way I can manage the users better using this starter kit?
u can delete users from the app_data folder in your applcaition in the open Users.config file and remove the total user tag<UserTable> which contains username what u want to delete and save it
other wise follow please steps in the start up kit admin page
B Bhupal
Marked as answer by MKozlowski on Jun 16, 2011 01:17 PM
Hi, I am using the starter kit and I see where I can add users but theres no where to delete or change their passwords with out going directly into the database to do this. I cant change the password either because it looks encrypted in the database. Is
there any way I can manage the users better using this starter kit?
Thanks!
Hi,
You can use Asp.Net Membership API for this type of stuff
You can go to the Administration -> user management then you will find options like Edit, Delete and create users.
Here your issue will solve.
If this post has helped you then please mark as Answer.
Thanks.
If this post has helped you then please mark as Answer. It will helpful for other users to find Thread easily. Thanks & Regards,
Anand Mani Tiwari
Software Engineer.
Marked as answer by MKozlowski on Jun 16, 2011 01:17 PM
MKozlowski
Member
508 Points
591 Posts
How to delete users and change passwords?
Jun 14, 2011 05:59 PM|LINK
Hi, I am using the starter kit and I see where I can add users but theres no where to delete or change their passwords with out going directly into the database to do this. I cant change the password either because it looks encrypted in the database. Is there any way I can manage the users better using this starter kit?
Thanks!
bhupalb
Participant
777 Points
160 Posts
Re: How to delete users and change passwords?
Jun 16, 2011 10:16 AM|LINK
hi
Administration -> user management u have option like edit delete create users
B Bhupal
it is useful mark it as Answer
bhupalb
Participant
777 Points
160 Posts
Re: How to delete users and change passwords?
Jun 16, 2011 10:29 AM|LINK
u can delete users from the app_data folder in your applcaition in the open Users.config file and remove the total user tag<UserTable> which contains username what u want to delete and save it
other wise follow please steps in the start up kit admin page
B Bhupal
matifnadeem
Contributor
4972 Points
1158 Posts
Re: How to delete users and change passwords?
Jun 16, 2011 10:53 AM|LINK
Hi,
You can use Asp.Net Membership API for this type of stuff
M Atif Nadeem
Mark as Answer if you got right thing
Read my blog | Follow me on LinkedIn
Anand Mani T...
Member
720 Points
138 Posts
Re: How to delete users and change passwords?
Jun 16, 2011 10:59 AM|LINK
Dear Friend,
You can go to the Administration -> user management then you will find options like Edit, Delete and create users.
Here your issue will solve.
If this post has helped you then please mark as Answer.
Thanks.
Thanks & Regards,
Anand Mani Tiwari
Software Engineer.
MKozlowski
Member
508 Points
591 Posts
Re: How to delete users and change passwords?
Jun 16, 2011 01:15 PM|LINK
Thanks for all the replys but I do not have a user management option? Below is my sitemap code Thanks!
<?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode title="" url="" description="foo" roles="*" > <!--<siteMapNode title="Log" url="~/TimeTracker/TimeEntry.aspx" description="Log a time entry" roles="Consultant,ProjectManager,ProjectAdministrator" /> <siteMapNode title="Reports" url="" description="Get usage reports" roles="ProjectManager,ProjectAdministrator" > <siteMapNode title="Project Reports" url="~/TimeTracker/Report_Project.aspx" description="Get project usage reports" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="Resources Report" url="~/TimeTracker/Report_Resources.aspx" description="Get resource reports" roles="ProjectManager,ProjectAdministrator" />--> <!--</siteMapNode>--> <siteMapNode title="Projects" url="" description="List of available projects" roles="ProjectManager,ProjectAdministrator" > <siteMapNode title="Create New Project" url="~/TimeTracker/Project_Details.aspx" description="Create a new projects" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="List All Projects" url="~/TimeTracker/ListAllProjects.aspx" description="List of available projects" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="List Closed Projects" url="~/TimeTracker/ListClosedProjects.aspx" description="List of available projects" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="List Open Projects" url="~/TimeTracker/ListOpenProjects.aspx" description="List of available projects" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="List Reprints" url="~/TimeTracker/ListReprints.aspx" description="List of available projects" roles="ProjectManager,ProjectAdministrator" /> <siteMapNode title="Search Projects" url="~/TimeTracker/Search.aspx" description="Seach for Existing projects" roles="ProjectManager,ProjectAdministrator" /> </siteMapNode> <siteMapNode title="Administration" url="" description="Adminitrattive tasks" roles="ProjectAdministrator" > <!--<siteMapNode title="Create New User" url="~/TimeTracker/User_Create.aspx" description="List of current users" roles="ProjectAdministrator" />--> <siteMapNode title="List Users" url="~/TimeTracker/User_List.aspx" description="List of current users" roles="ProjectAdministrator" /> </siteMapNode> </siteMapNode> </siteMap>