如何在母版页js脚本后加载网页js
我的网页中有 javascript 代码,需要在母版页中的 js 代码之后加载,但 .NET 似乎希望以相反的方式进行操作。我尝试过使用 ClientScript.RegisterStartupScript,但网页代码仍然出现在输出流中母版页脚本之前。
I have javascript code in a web page that needs to get loaded after js code in the master page, but .NET seems to want things the other way around. I have tried using ClientScript.RegisterStartupScript, but the web page code still appears in the output stream before the master page script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此尝试内容占位符。
在母版页中:
在内容网页中:
Try content placeholders for this.
In the master page:
in the content web page:
RegisterClientScriptBlock ,它在渲染页面的顶部插入一个脚本块。
RegisterStartupScript ,它在渲染页面的末尾插入一个脚本块。
http://msdn.microsoft.com/en-us/library /3hc29e2a.aspx#InclusionCustomClientScriptinASP.NETPages
RegisterClientScriptBlock , which inserts a script block at the top of the rendered page.
RegisterStartupScript , which inserts a script block at the end of the rendered page.
http://msdn.microsoft.com/en-us/library/3hc29e2a.aspx#IncludingCustomClientScriptinASP.NETPages