Joby Kurian
Joby Kurian

Reputation: 3937

Not starting debugging after putting <httpRuntime enableVersionHeader="false"/> in webconfig

Not starting debugging after putting <httpRuntime enableVersionHeader="false"/> in webconfig. After commented out this line its working fine.I am using Visual Studio 2008.

While debugging following things are happening, debugger icon will be disabled, starts building, successfully completed, Then it stops and enable the debugger icon,

Upvotes: 1

Views: 539

Answers (1)

Erica
Erica

Reputation: 470

http://msdn.microsoft.com/en-us/library/system.web.configuration.httpruntimesection.enableversionheader.aspx

This article mentions that the version header tells Visual Studio which version of .NET is in use. You only want to change it to false for release builds.

Upvotes: 1

Related Questions