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
|
|
|
The close as I can get is:
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:
|
|||
|
|
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:
|
|||||||
|
|
|
|||||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
This is incorrect:
@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: |
||||
|
|