在 ASP.NET 的 head 中包含客户端脚本

发布于 2024-10-23 20:04:43 字数 304 浏览 1 评论 0原文

嘿伙计们。我不做 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨夜星沙 2024-10-30 20:04:43

只需放入对脚本的客户端引用即可。

<head> <script lang="Javascript" src="./scripts/yourscript.js"></script>

或者,如果需要内联,请将实际脚本包含在母版页中。

Just put a client side reference to the script in.

<head> <script lang="Javascript" src="./scripts/yourscript.js"></script>

Or, if it needs to be inline, include the actual script right there in the master page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文