Hi Guys,
Your help please.
I've tried a search for this but couldn't find the answer. I assume that it must be too simple

I'm trying to run an ASP.NET demo that I'm hoping to use as the basis of my work. But alas I have fell before the first hurdle.
I have read the help message that the error suggests but the debug is set to true.

Here is error message:
Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged.

Here is my part of the supplied Web Config file:
Code:
<system.web>
	<authentication mode="None" />
	<compilation defaultLanguage="C#" debug="true" />
	<customErrors mode="RemoteOnly" defaultRedirect="/" />
	<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
	<sessionState mode="InProc" cookieless="false" timeout="20" />
	<trace enabled="true" requestLimit="10000" pageOutput="true" traceMode="SortByTime" localOnly="true" />
</system.web>
My goal is to get this working then convert it to VB. I just thought I would mention it in case there may be a gotcha! somewhere

Any ideas?