添加<脚本...>>内的标签ServerControl (ASP.NET) 中的标记?

发布于 2024-10-01 04:25:41 字数 205 浏览 7 评论 0原文

我将在自定义 ServerControl 中使用 JQuery 文件,因此我必须在 Head 标记中添加以下行。

<script type="text/javascript" src="jquery-1.4.3.min.js"></script>

我怎样才能用C#在ServerControl中做到这一点

I'm gonna use JQuery files in my custom ServerControl , thus I have to add below line within Head tag.

<script type="text/javascript" src="jquery-1.4.3.min.js"></script>

How can I do it in ServerControl with C#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蛮可爱 2024-10-08 04:25:42

您可以使用 ClientScriptManager.RegisterClientScriptInclude 方法< /a> 在页面加载期间。或者,您可以仅将该脚本包含在 .aspx 页面中。如果这是公共服务器控件,则第一种方法可能更可取。

编辑:或者您可以在页面的 标记中注册脚本,如下所示:

HtmlGenericControl jqueryInclude = new HtmlGenericControl("script");
jqueryInclude.Attributes.Add("type", "text/javascript");
jqueryInclude.Attributes.Add("src", "http://<path to jQuery>");
Page.Header.Controls.Add(jqueryInclude);

You can register custom scripts using the ClientScriptManager.RegisterClientScriptInclude Method during the page load. Alternatively, you can just include the script in your .aspx page. If this is a public server control, the first method is probably more preferable.

EDIT: alternatively you can register scripts in the <head> tag of the page as follows:

HtmlGenericControl jqueryInclude = new HtmlGenericControl("script");
jqueryInclude.Attributes.Add("type", "text/javascript");
jqueryInclude.Attributes.Add("src", "http://<path to jQuery>");
Page.Header.Controls.Add(jqueryInclude);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文