Is there a ASP.NET web site administration tool in IIS?

后端 未结 6 1294
时光说笑
时光说笑 2021-02-13 17:27

I am using asp.net web site administration tool to manage the different roles in my project (currently Customer and Administrator). During the development, in vs 2008, its very

相关标签:
6条回答
  • 2021-02-13 18:01

    Supposedly, developers are intended to admin the site using the visual studio web site administration tool. There is no out-of-the-box web interface to front-end that stuff.

    0 讨论(0)
  • 2021-02-13 18:03

    Try this ASP.NET Web Site Administration Tool http://sourceforge.net/projects/wsatudri/

    0 讨论(0)
  • 2021-02-13 18:06

    you can create an application in IIS, you just know that direction of web administration tools (C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ASP.NETWebAdminFiles)

    the other point that you should now is that you need two parameter in the URL.

    AS an example: http://localhost/PMIS-Security/default.aspx?applicationPhysicalPath=C:\PMIS&applicationUrl=/PMIS

    applicationPhysicalPath=C:\PMIS applicationUrl=/PMIS

    0 讨论(0)
  • 2021-02-13 18:14

    This article describes how to create one, including the code that you can directly embed in your website:

    http://aspnet.4guysfromrolla.com/articles/053007-1.aspx

    This article describes how you can run the ASP.NET configuration website administration tool on IIS: http://blogs.msdn.com/rahulso/archive/2006/03/09/547402.aspx

    Update: here's a very basic example in MVC3/Razor: http://www.mikepope.com/blog/DisplayBlog.aspx?permalink=2240#Create_a_page_to_manage_roles

    0 讨论(0)
  • 2021-02-13 18:14

    You can use Servant. Get it here http://servant.io/ just install it on your server and you are good to go

    0 讨论(0)
  • 2021-02-13 18:21

    If you are using a SQL Server instance, rather than the mapped database file in APP_DATA you can use the ASP.Net configuration tool by temporarily changing the Connection String for the database to point to your live database rather than the local one - this will enable you to edit the roles/users etc.

    However, it's one of those areas where you should probably look at writing/finding a tool to edit/manage these properly.

    0 讨论(0)
提交回复
热议问题