webdev.webserver

Visual Studio 2010 debug in a fixed port

此生再无相见时 提交于 2019-11-29 06:01:50
Is it possible to choose a fixed port for the Visual Studio 2010 debug webserver? If it's similar to VS2008, you can do the following to fix the port number: Click on the web site project node in Solution Explorer Hit F4 to bring up the properties tool window Set "Use dynamic ports" to false Set "Port number" to whatever you need Should appear as an option in the web project properties, 'Web' tab. By default its set to auto-assign but theres an option to set a specific port. 来源: https://stackoverflow.com/questions/2920610/visual-studio-2010-debug-in-a-fixed-port

Firebug equivalent for Internet Explorer

北战南征 提交于 2019-11-29 01:17:12
I am looking for a tool/add-on like Firebug on Firefox ( that is immensely useful for debugging web applications) which works for Internet Explorer. Any suggestions ? -thanks Microsoft provides the IE Developer Toolbar which provides similar functionality to Firebug. You can also use Firebug Lite in IE6+. Check this Firebug Lite For IE . Also there is DebugBar, IE developer toolbar are few other names. Also wanted to mention, for network analysis, similar to Firebug's Net tab, I don't think IE dev tools offers as good an alternative. You can then use Fiddler/Fiddler 2 and it's related plugins.

Is Visual Studio 2010 WebDev WebServer (Cassini) 64-bit compatible?

感情迁移 提交于 2019-11-28 08:04:31
I'm now developing on Visual Studio 2008 on a 64-bit OS (Windows Server 2008 64-bit). While the apps I write are 64-bit capable, as is IIS7, the built-in ASP.NET Development Server (aka Cassini aka WebDev.Webserver.exe) runs as 32-bit. This brings up a plethora of issues, such as: 32-bit and 64-bit applications have separate HKLM\Software registry homes There are 32-bit and 64-bit versions of the SQL Server Client Network Utility Other fun surprises I haven't discovered but I'm sure will spring up While I am finding workarounds for most of this, I have to ask... Does anyone who has played with

Firebug equivalent for Internet Explorer

时光毁灭记忆、已成空白 提交于 2019-11-27 21:36:23
问题 I am looking for a tool/add-on like Firebug on Firefox ( that is immensely useful for debugging web applications) which works for Internet Explorer. Any suggestions ? -thanks 回答1: Microsoft provides the IE Developer Toolbar which provides similar functionality to Firebug. You can also use Firebug Lite in IE6+. 回答2: Check this Firebug Lite For IE. Also there is DebugBar, IE developer toolbar are few other names. 回答3: Also wanted to mention, for network analysis, similar to Firebug's Net tab, I

Force visual studio to start development server using the hostname localhost. (with period at end)

。_饼干妹妹 提交于 2019-11-27 03:05:36
问题 Is it possible to change the hostname that the development server fires up in visual studio 2008? Ultimately I would like visual studio to start directly on http://localhost.:xxxx/ (note the period). As I am doing more ajax type calls I find that I need to inspect traffic more often using tools like fiddler to check responses/requests. (Fiddler cannot see requests over http://localhost/ as they do not traverse the regular network stack). I looked through the web server configuration page but

Is Visual Studio 2010 WebDev WebServer (Cassini) 64-bit compatible?

倖福魔咒の 提交于 2019-11-27 02:08:54
问题 I'm now developing on Visual Studio 2008 on a 64-bit OS (Windows Server 2008 64-bit). While the apps I write are 64-bit capable, as is IIS7, the built-in ASP.NET Development Server (aka Cassini aka WebDev.Webserver.exe) runs as 32-bit. This brings up a plethora of issues, such as: 32-bit and 64-bit applications have separate HKLM\Software registry homes There are 32-bit and 64-bit versions of the SQL Server Client Network Utility Other fun surprises I haven't discovered but I'm sure will

Unable to map an HttpHandler to a “path/*” wildcard mapping

允我心安 提交于 2019-11-27 01:48:00
问题 So I've been trying to map an http module to a sub-path of an MVC3 site. It should be pretty simple as I understand it, but it has not been working. The module is setup like so: <handlers> <add name="Nancy" path="api/*" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" allowPathInfo="true" /> </handlers> A matching section is also there for iis6 so I can run it under webdev.webserver. However testing both deploying to my local iis7 (under Win7) and with webdev.webserver, only /api