在 ASP.NET 的 head 中包含客户端脚本
嘿伙计们。我不做 HTML 或 Javascript,我更喜欢用 C# 工作,但一位 JS 人员告诉我,他需要在 head 标签中包含一个脚本。相关页面是母版页的内容页面。我似乎无法完成这项工作。我尝试通过编程引用 this.ClientScript.RegisterClientScriptInclude
添加脚本,但它出现在 标记中。我尝试在母版页的
标记内的 contentplaceholder 中添加 ScriptManager 和 ScriptReference,但这也不起作用。如何才能做到这一点?
Hey guys. I don't do HTML or Javascript, I prefer to work in C#, but one of the JS guys tells me that he needs a script included within the head tag. The page in question is a content page of a master page. I can't seem to make this work. I tried adding the script by a programmatic reference this.ClientScript.RegisterClientScriptInclude
, but it came out in the <body>
tag. I tried adding a ScriptManager and a ScriptReference in the contentplaceholder inside the <head>
tag of the master page, but this didn't work either. How can this be accomplished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需放入对脚本的客户端引用即可。
或者,如果需要内联,请将实际脚本包含在母版页中。
Just put a client side reference to the script in.
Or, if it needs to be inline, include the actual script right there in the master page.