检查页面上是否已加载 javascript 文件
如何在 C# 中检查 javascript 文件是否已加载到页面上?假设我在不同的命名空间中有一个用户控件,并将其加载到页面上。我想在向脚本管理器注册脚本文件之前查看该脚本文件是否不存在。
How to check in C# if a javascript file is already loaded on to the page? Let's say I have a user control in a different namespace that I load on to a page. I would like to see if a script file doesn't exist before I register it with the scriptmanager.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
ScriptManager.GetRegisteredClientScriptBlocks()。从该 RegisteredScript 对象集合中,您可以使用 Type 和 Key 属性来唯一标识它们。
You're looking for
ScriptManager.GetRegisteredClientScriptBlocks(). From that collection of RegisteredScript objects you can use the Type and Key properties to uniquely identify them.