Re: asp.net: how do I detect if debug mode is true or false ? by Shahzad
Shahzad
Fri Jul 28 08:55:30 CDT 2006
You can check using code like
#If Debug = False Then
Me.Text = ""
#End If)
Shahzad Godil
Karachi-Pakistan
"zolof" <zolof@discussions.microsoft.com> wrote in message
news:6A6CE151-D801-4BE7-BAB4-5D7A05BD6B8F@microsoft.com...
>I which to detect in my code if compilation has debug enabled ?
> I would different behaviours according to the compilation type.