我把所有的javascript函数放在一个文件中(为了清楚起见,我们称之为javascriptsample.js)。
我需要使用一个函数,这是在该文件中,在我的asp.net侧使用RegisterStartupScript。
如何调用这个函数?
您必须在aspx页面中提供javascriptsample.js
的引用…
之后可以使用…
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "tmp", "<script type='text/javascript'>JavascriptFunctionname();</script>", false);