Why can't I run in debug mode?
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 :blush:
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. :mad:
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? :(
Re: Why can't I run in debug mode?
Re: Why can't I run in debug mode?
Hopefully those links helped.
I remembered I had those problems, when I was trying to have my boss look at my development site.
I had go to the IIS Manager and right-click on the project and allow server-side debugging and client-side debugging. Leave another message if you still need help if you haven't solved your problem.
Re: Why can't I run in debug mode? [Resolved]
dtch & token,
Thanks for your replies. The links helped (well the second one). Fantastic! :thumb:
Thanks Guys :)