我有一个服务器控件,需要以编程方式将JavaScript引用注入页面。它是引用Microsoft的Bing地图控件,需要将&s=1
附加到脚本URL以供SSL使用。问题是.NET Framework对属性进行编码并将&
更改为&
(使用Reflector进行验证)。在此之后的某个时刻,&
被完全删除。
所需的脚本标记:
<script type="text/javascript"
src="https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1">
</script>
尝试1:
var clientScriptManager = this.Page.ClientScript;
if (!clientScriptManager.IsClientScriptIncludeRegistered(this.GetType(), "BingMapControl"))
{
clientScriptManager.RegisterClientScriptInclude(
this.GetType(), "BingMapControl",
"https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1");
}
尝试2:
HtmlGenericControl include = new HtmlGenericControl("script");
include.Attributes.Add("type", "text/javascript");
include.Attributes.Add("src",
"https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1");
this.Page.Header.Controls.Add(include);
有什么想法吗?
答案 0 :(得分:4)
所需的脚本标记:
&lt; script type =“text / javascript”
SRC = “https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1” &GT;
&LT; /脚本&GT;
实际上,没有。实际上,您想要的脚本标记是:
<script type="text/javascript"
src="https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1">
</script>
您做希望将&
编码为&
。为什么?因为HTML标准是这样说的。例如,请参阅XHTML 1.0标准的第C.12. Using Ampersands in Attribute Values (and Elsewhere)节:
为了确保文档与历史HTML用户代理和基于XML的用户代理兼容,文档中用作文字字符的&符必须表示为实体引用(例如“{{1 }}“)。例如,当
&
元素的href
属性引用带参数的CGI脚本时,它必须表示为a
而不是http://my.site.dom/cgi-bin/myscript.pl?class=guest&name=user
。
答案 1 :(得分:0)
出于好奇......这段代码只是一个例子吗?如果有一些动态部分需要在运行时设置,我通常只使用RegisterClientScript及其同类。否则,您可以在aspx,ascx或js文件中静态编写它。
您是否尝试过Literal控件?我知道我最近做过这件事。我将不得不挖掘我的代码。
答案 2 :(得分:0)
似乎所有添加到Header的控件都是html.encode-d Page.Header.Controls.Add
快速解决方案是添加属性ScriptUrl
public string ScriptUrl
{
get
{
return "https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2&s=1";
}
}
和aspx
<head runat="server">
<title></title>
<script type="text/javascript" src="<%= ScriptUrl %>"></script>
</head>
这就是全部