ascx 是 javascriptscript

发布于 2024-10-16 10:28:00 字数 90 浏览 2 评论 0原文

我希望我的 asp.net .ascx 用户控件使用一些 javascript。怎样做才正确呢?我不知道我应该做什么?我应该使用 scriptmanager 对象吗?

I want my asp.net .ascx user control to use some javascript. How to do it properly? I am not sure what I should do? Should I use the scriptmanager object?

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

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

发布评论

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

评论(2

同尘 2024-10-23 10:28:01

这取决于具体情况。将脚本放入 ascx 文件中是完全合理的。这就是我对没有任何动态组件的简单脚本所做的事情。也适用于 CustomValidator 对象引用的客户端验证函数。

对于复杂的脚本,最好将它们分成自己的 .js 文件并链接它们或动态添加。

It depends on the situation. It's perfectly reasonable just to drop the script into your ascx files. This is what I do with simple scripts that don't have any sort of dynamic components. Also good for client-side validatation functions referenced by CustomValidator objects.

For complex scripts it's nice to separate them into their own .js files and link them or add dynamically.

后来的我们 2024-10-23 10:28:01

将脚本管理器拖放到母版页上,然后:

ScriptManager sm = (ScriptManager)master.ScriptManager1;
sm.Scripts.Add(new ScriptReference("~/Scripts/banners.js"));

Drop a script manager on the master page and then:

ScriptManager sm = (ScriptManager)master.ScriptManager1;
sm.Scripts.Add(new ScriptReference("~/Scripts/banners.js"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文