0

我似乎直接在我的 site.master 中遇到了条件编译标签的问题。

基本上我有以下内容,但它在编译器中报告“无法解析符号调试”,尽管我可以在 DEBUG 和 RELEASE 中运行......但最终输出总是打印我在 RELEASE 或 DEBUG 中的 DEBUG 天气中的内容......

如前所述,编译器没有抱怨,但它在调试时有一些红线,并带有错误消息。我做错了什么?任何人都可以帮忙吗?

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>

    <% #if DEBUG %>
    <link href="../../Content/CSS/test.css" rel="stylesheet" type="text/css" />
   <script src="../../Content/Scripts/jquery-1.3.2.js" type="text/javascript">     
    </script>    
   <% #else %>
   <link href="../../Content/CSS/StyleSheetFinal.css" rel="stylesheet" type="text/css" />
   <script src="../../Content/Scripts/JavascriptFinal.js" type="text/javascript"></script>
   <% #endif %>
4

2 回答 2

1

我从未在 aspx 页面中使用过条件编译标签,但我对可能出现的问题有一个想法。当您说“在 DEBUG 中运行”或“在 RELEASE 中运行”时,您究竟是什么意思?您如何将其设置为调试或发布模式?如果您只是将 Visual Studio 设置为进行调试/发布构建,则不适用于 aspx 页面的编译方式。是否在调试/发布模式下编译 aspx 页面仅取决于页眉中的设置或 web.config 中的设置。

于 2009-10-31T23:55:51.523 回答
0

查看http://haacked.com/archive/2007/09/16/conditional-compilation-constants-and-asp.net.aspx

于 2010-11-22T08:34:21.407 回答