asp.net: how do I detect if debug mode is true or false ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I which to detect in my code if compilation has debug enabled ?
I would different behaviours according to the compilation type.
 
You can check using code like

#If Debug = False Then
Me.Text = ""
#End If)

Shahzad Godil
Karachi-Pakistan
 
Back
Top