I\'ve got a conditional compilation symbol I\'m using called \"RELEASE\", that I indicated in my project\'s properties in Visual Studio. I want some particular CSS to be app
In your model:
bool isRelease = false; <% #if (RELEASE) %> isRelease = true; <% #endif %>
In your view:
<% if (Model.isRelease) { %> Banner text here <% } else { %> Banner text here <% } %>