添加<脚本...>>内的标签ServerControl (ASP.NET) 中的标记?
我将在自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ClientScriptManager.RegisterClientScriptInclude 方法< /a> 在页面加载期间。或者,您可以仅将该脚本包含在 .aspx 页面中。如果这是公共服务器控件,则第一种方法可能更可取。
编辑:或者您可以在页面的
标记中注册脚本,如下所示:
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: