No ASP.NET development web server option?
craigw9292
Posts: 4
I'm using ANTS Pro 3.1.0.20.
XP SP2 with VS 2008, asp.net C#.
When I start the profiler the asp.net development web server is not selectable? I made the patch to add VS V9 to my addin file but that didn't help. This works fine on my other images (XP SP2 with VS2005) so I can only assume its a VS 2008 issue?
Thanks,
Craig
XP SP2 with VS 2008, asp.net C#.
When I start the profiler the asp.net development web server is not selectable? I made the patch to add VS V9 to my addin file but that didn't help. This works fine on my other images (XP SP2 with VS2005) so I can only assume its a VS 2008 issue?
Thanks,
Craig
Comments
thanks
Thanks for posting; yes, this is a Visual Studio 2008 issue caused by the WebDev.Webserver.exe being moved to the %commonprogramfiles% folder whereas it used to be available in the .NET Framework installation folder.
The workaround is to start the development web server as a normal desktop application.
and select Webdev.WebServer.exe
/Path:"c:\inetpub\MyApp" -the path to the web application on your hard drive
/port:8080 -a TCP port not currently used by IIS (or other app)
/vpath:"/MyApp" -the name of the virtual directory where the app normally is found in when you run it in IIS
Craig
Thanks for the alternate workaround suggestion. I'm glad that works for you.