Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I do something like this in the markup of an asp.net page, based off the "Define DEBUG constant" setting?

#IF (DEBUG) THEN
  <asp:TextBox ID="TextBox1" runat="server">You're in debug mode</asp:TextBox>
#END IF
share|improve this question

6 Answers

up vote 3 down vote accepted

The close as I can get is:

<asp:Literal id="isDebug" runat="server" />
<script runat="server">
    void Page_Load()
    {
#if DEBUG
        isDebug.Text = "You're in debug mode";
#endif
    }
</script>

This would give you problems if you wanted to have anything else in your Page_Load() event; the literal code above only works if the page/control has no code behind.

If I needed to do this, I would encapuslate the above code into a user control and include that control in the pages of interest.

My test user control looks like this:

<%@ Control Language="C#" AutoEventWireup="true"  %>
<asp:Literal id="isDebug" runat="server" />
<script runat="server">    
    void Page_Load()    
    {
#if DEBUG        
        isDebug.Text = "You're in debug mode";
#endif    
    }
</script>
share|improve this answer
<form runat="server">
 <% #if DEBUG %>
 <asp:TextBox ID="TextBox1" runat="server">You're in debug mode</asp:TextBox>
 <% #else %>
 <asp:TextBox ID="TextBox2" runat="server">Mmm... No, I think you're not in debug mode</asp:TextBox>
 <% #endif %>
</form>

Note that you cannot assign the same ID for those text boxes.

Also note that DEBUG is true when it is set so in web.config:

<compilation debug="true">
share|improve this answer
is there a way to set debug automatically true when debugging and vice versa ? – Guy Apr 9 '12 at 12:12
1  
@Guy DEBUG indicates whether or not you're using a Debug Build (As opposed to a Release build / others). I think what you want is Debugger.IsAttached or HttpContext.Current.IsDebuggingEnabled - Will be true if launched from within VS, false otherwise (unless you manually attach a debugger of course) – Basic Jun 21 '12 at 14:23

This post on Phil Haack's blog covers it.

share|improve this answer
Thanks for the link! – Kevin Babcock May 12 '10 at 1:35
+1 - specifically, the HttpContext.Current.IsDebuggingEnabled note – Matthew Nov 5 '11 at 15:01

It would be easy enough to roll your own. You might miss some of the cooler non-compiling features of Compilation Constants but you'd definitely have the ability to add markup based on a global parameter of some sort.

share|improve this answer

How about using a Literal and then using #if DEBUG in your code-behind to inject html for your textbox into the literal? Also there are direct code blocks in ASP.NET but I don't know if they deal with #if statements; those seem to be reserved for the C# compiler.

share|improve this answer

This is incorrect:

<compilation debug="true">

@algiecas: Setting debug to true or flase in the web.config makes no difference. It depends solely on whether the project was compiled as "Debug" or not:

Debug mode enabled - note the else clause code is faded out as Debug mode is selected:

http://i.imgur.com/1pGT6.png

share|improve this answer
That's the case with code-behind files, not aspx – algiecas Aug 2 '11 at 7:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.