From: inungh on
I got a message to turn on debug on web.config and I click on yes, but
how can I set it back to off?


Your information is great appreciated,
From: Juan T. Llibre on
In web.config :

<compilation debug = "false">

It's the only way to set it to off. The default is "true".
Production applications should always have debug turned off, for performance purposes.



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espa�ol : http://asp.net.do/foros/
======================================
"inungh" <inungh(a)gmail.com> wrote in message news:3812b78f-4540-473b-a35a-8f43bcd5d9cc(a)d1g2000hsg.googlegroups.com...
>I got a message to turn on debug on web.config and I click on yes, but
> how can I set it back to off?
>
>
> Your information is great appreciated,


From: Munna on
Hi,

"<compilation debug = "false"> " will set the application not to load
any debug symbols so you will unable to debug..
but as Juan said its for application performance while deployment in
production server.


Best of luck

------
Munna

www.munna.shatkotha.com/blog
www.munna.shatkotha.com
www.shatkotha.com
From: inungh on
On Jul 6, 12:52 am, Munna <munna...(a)gmail.com> wrote:
> Hi,
>
> "<compilation debug = "false"> " will set the application not to load
> any debug symbols so you will unable to debug..
> but as Juan said its for application performance while deployment in
> production server.
>
> Best of luck
>
> ------
> Munna
>
> www.munna.shatkotha.com/blogwww.munna.shatkotha.comwww.shatkotha.com

Thanks millions for he;lping,