Is there any way to specify a permanent port for ASP.NET Configuration site (Web Site Administration Tool)?
I need to add a link to the ASP.NET Configuration site, but I can't due to the port changing each time it starts.

|
Is there any way to specify a permanent port for ASP.NET Configuration site (Web Site Administration Tool)? I need to add a link to the ASP.NET Configuration site, but I can't due to the port changing each time it starts.
| |||||||||||
feedback
|
|
Its the port for ASP.NET Development server | |||||||||
feedback
|
|
I'm not sure that you can. The Web Site Administration Tool isn't really meant to be "linked" to as such, it's a fairly powerful, unsecured application, that's only really meant to be run by a developer/admin. The "Considerations" section of the documentation explain why:
From that you can see that this isn't something that's intended to be kept around. That said, with a little bit of hacking around, you could probably If you right click on the ASP.NET Development server task tray item for the admin tool, and select "Show Details", you can see that the virtual directory that the tool runs under is mapped to (something like):
If you were to create (and secure) a virtual directory on your application mapped to that path, you might well be able to get this all up and running as you want. As pseudocoder points out in his comment below, while going down the Virtual Directory route does "work", there are some limitations to the tool that, coupled with the security issues mean that you probably wouldn't want to use it going forward. If you were to stick with the Development Server option, the tool won't respond to non-local requests, and once you've deployed the site to a proper web server (IIS) for users to access the Admin site won't be running anyway. It would probably be better if you could explain why you want to use this permanently so we can advise you on some better options - for example the Membership, Profile and Role providers both provide nice APIs for managing user details that can be easily built into a custom admin area. Tricky one, however I think to get this working correctly, you're going to have to spend some time doing something, and it's probably better for you in the long run to spend that time doing the right thing rather than hacking in the wrong option. The Development server can be started from a command line, using a commands along the lines of:
Armed with this information, you could do something along the lines of:
All of which is possible, but it's not trivial, and you'll find you'll need to be doing odd things with the process your starting, and you'll need to be very careful you don't shut down the instance of the DevServer that's actually running your site by mistake. However, this would probably take as long as it would to knock up a quick set of user admin screens, and you'd learn something more useful along the way* * Which isn't to say that learning how to start and leave running a process isn't useful, it's more to say that I'm guessing its not what you're supposed to be learning at the moment, and you should probably be focusing on that ;) | |||||||||||||
feedback
|