1

我一直在寻找关于为什么以下内容不会在服务器上执行的解释

<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title></title>
    <link href="<%=CurrentUser.ses.style.css%>" type="text/css" rel="stylesheet">
</head>

但是以下将执行得很好

<link href="<%=CurrentUser.ses.style.css%>" type=text/css rel="stylesheet">

(注意缺少的“”)

我什至试过

<link href="<%=CurrentUser.ses.style.css%>" type="<%=Response.ContentType = "text/css" %>" rel="stylesheet">

但这将改变页面的内容类型并将其全部作为 css 服务。

我究竟做错了什么?

4

1 回答 1

1

尝试这个 ?

<link href="<%= String.Format("{0}",CurrentUser.ses.style.css)%>" type="text/css" rel="stylesheet">
于 2013-05-14T08:32:34.600 回答