Changing the Output Path

  • Thread starter Thread starter Stefan Hoffmann
  • Start date Start date
S

Stefan Hoffmann

hi,

is it possible to change the Output Path of a ASP.NET Web application,
so that I can debug (F5) it?

I can compile and run the application, if I change the Output Path from
"bin\" to e.g. C:\Temp\Bin", but I get an error message displayed for
the default page:

Could not load type 'Presentation.Implementation._Default'.


mfG
--> stefan <--
 
hi,

is it possible to change the Output Path of a ASP.NET Web application,
so that I can debug (F5) it?

I can compile and run the application, if I change the Output Path from
"bin\" to e.g. C:\Temp\Bin", but I get an error message displayed for
the default page:

Could not load type 'Presentation.Implementation._Default'.

mfG
--> stefan <--

Hallo Stefan

you see that error because ASP.NET cannot find \bin directory at the
root. The \bin directory must be a physical directory at the root, you
can't have it as a virtual directory in IIS, or something like this
and the answer to your question is 'no'.
 
Back
Top