这样的代码应该没有问题,另外你也可以试试单引号
<head runat="server">
<title>UrlToHtml</title>
<script type="text/C#" runat="server">
public string tt = "/Resource/style/base.css";
public string tt2 = "/Resource/style/demos.css";
</script>
<link href="<%= tt %>" rel="stylesheet" type="text/css" />
<link href='<%= tt2 %>' rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
UrlToHtml is Suceess!<br />
<%=tt %><br />
<%=tt2 %>
</div>
</form>
</body>
</html>
一般的我只要是绑定到href 、一些属性上的。我都是用 ‘<%= tt %> ’
以前1.1 好像出现过 2.0 没发现