是否可以有 ASP.NET 注释的条件编译?

发布于 2024-08-24 13:25:22 字数 193 浏览 5 评论 0原文

我想做这样的事情

<# if ANYPREPROCESSORCONSTANT #>
<%--
<# endif #>

是否可能(我想有条件地放置一个asp.net COMMENT,我不想有条件地调用方法)?

更新:似乎不可能最终没有人能给出任何正确的答案:)

I'd like to do something like this

<# if ANYPREPROCESSORCONSTANT #>
<%--
<# endif #>

Is it possible (I want to put an asp.net COMMENT conditionally, I don't want to call a method conditionaly) ?

Update: seems impossible finally nobody could give any right answer :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

走过海棠暮 2024-08-31 13:25:22

你可以这样做:

<% #if DEBUG %>
<div id="debug"></div>
<% #else %>
<div id="release"></div>
<% #endif %>

虽然我认为它的可读性不是很好......仅在需要时才使用它!

You can do this:

<% #if DEBUG %>
<div id="debug"></div>
<% #else %>
<div id="release"></div>
<% #endif %>

Though it's not very readable in my opinion...use it only if needed!

沫离伤花 2024-08-31 13:25:22

是的,您可以在 web.config 中为网站项目定义编译器常量,如下所示。请注意,注释必须完全包含在 #if...#end if 结构中。否则,您将注释掉#end if。

<system.codedom>
    <compilers>
        <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
            <providerOption name="CompilerVersion" value="v3.5"/>
            <providerOption name="WarnAsError" value="false"/>
        </compiler>
        <compiler compilerOptions="/d:DEBUG,TRACE,DEBUG_SURVEYCODE,GPT,TRACE_ARGS,TRACE_ARGS_OUTPUT,TRACE_FILES,DEBUG_USER" language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
    </compilers>
</system.codedom>

 <% #if TRACE_ARGS_OUTPUT %>
 <!-- this traces output comment -->
 <% #end if %>
 <% #if TRACE_ARGS_OUTPUT = FALSE %>
 <!-- this does not output comment -->
 <% #end if %>

Yes, you define compilier constants for a Web Site project in the web.config, as shown below. Note the comment must be fully enclosed within the #if...#end if construct. Otherwise, you are commenting out the #end if.

<system.codedom>
    <compilers>
        <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
            <providerOption name="CompilerVersion" value="v3.5"/>
            <providerOption name="WarnAsError" value="false"/>
        </compiler>
        <compiler compilerOptions="/d:DEBUG,TRACE,DEBUG_SURVEYCODE,GPT,TRACE_ARGS,TRACE_ARGS_OUTPUT,TRACE_FILES,DEBUG_USER" language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
    </compilers>
</system.codedom>

 <% #if TRACE_ARGS_OUTPUT %>
 <!-- this traces output comment -->
 <% #end if %>
 <% #if TRACE_ARGS_OUTPUT = FALSE %>
 <!-- this does not output comment -->
 <% #end if %>
寄人书 2024-08-31 13:25:22

既然你说的是设计时间,我假设你指的是 服务器控制设计支持吗?

您必须在设计时代码中处理条件......

#if SOMEDEFINE
DoSomething();

#endif

Since you said design time, I'm assuming you're referring to Server Control Design Support?

You will have to handle the conditional in your design-time code behind...

#if SOMEDEFINE
DoSomething();

#endif

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文