本文介绍了在Page Load事件上调用JavaScript函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在页面加载时调用javascript函数。



我试过了

(在aspx.cs Page_load上)

I want to Call javascript function on page load.

I have tried
(on aspx.cs Page_load)

ClientScript.RegisterStartupScript(GetType(), "Javascript", "javascript:FUNCTIONNAME(); ", true);


                     AND

(on .aspx before ending script tag)
ScriptManager.RegisterStartupScript(GetType(), "Javascript", "javascript:FUNCTIONNAME(); ", true);





两个dint都给了我结果..。



Both dint gave me the result.. .

推荐答案



ScriptManager.RegisterStartupScript(this, typeof(Page), "Testing", "FUNCTIONNAME();", true);









--Amit





--Amit


这篇关于在Page Load事件上调用JavaScript函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 01:28