ascx 是 javascriptscript
我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于具体情况。将脚本放入 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.
将脚本管理器拖放到母版页上,然后:
Drop a script manager on the master page and then: