4

我有一个 ASP.NET 页面。在页面加载中,我设置了一个公共变量的值。在内联编码部分,我正在加载一个 CSS,它是一个名称在公共变量中可用的文件夹。我的 HTML标记如下

<%@ Page Language="C#"  EnableEventValidation="false" AutoEventWireup="true" CodeFile="MyPage.aspx.cs"  Theme="GridView" Inherits="GUI.MyPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MyPage</title>
<link href="../Vendors/<%=vendorName%>/css/style.css" rel="stylesheet" type="text/css" />

</head>
 <body>
<%=vendorName %> <!-- here value is printed correctly -->
 ...
 </body>

在我后面的代码中

 public partial class MyPage: MyCommonClass
 {
    public string vendorName = "";
     protected void Page_Load(object sender, EventArgs e)
     {
        vendorName = "ACLL";
     }

 }

但是当我运行页面时, <%=VEndorId%> 没有被替换为其中的值。但是在正文中,它正在正确打印。但是在头部它没有出现。我检查了 ViewSource 并找到了源HTML如下

<link href="../Vendors/&lt;%=vendorName%>/Lib/css/tradein.css" rel="stylesheet" type="text/css" />
4

3 回答 3

7

这两个选项是:

<link href="<%= string.Format("../Vendors/{0}/css/style.css", vendorName) %>" type="text/css" rel="Stylesheet" /> // as Greco stated

<style>
  @import url("../Vendors/<%=vendorName%>/css/style.css");
</style>
于 2009-07-29T18:25:01.437 回答
3

将 runat="server" 标记添加到链接元素。

于 2009-07-29T07:08:00.957 回答
0

类似的问题和好的答案在这里

解决方案是将内联代码周围的引号移动代码中

<link href=<%="'../Vendors/" + vendorName + "/css/style.css'"%> rel="stylesheet"...
               ^                                           ^
于 2013-11-20T02:57:42.777 回答