如何从后面的c#代码调用JavaScript函数

最初一个表在ASP.NET页面中是不可见的。 在按钮点击事件,它应该去后面的代码,并从那里我需要在JavaScript中调用一个函数。 在那个javascript函数中,我应该让表格可见。 这可能吗?? 有人请帮助我


尝试这个:

Page.ClientScript.RegisterStartupScript(GetType(), "MyKey", "Myfunction();", true);

尝试下面的代码

ScriptManager.RegisterStartupScript(this, this.GetType(), "isActive", "alert('hello');", true);

这里“ this ”用于控制你想要触发的控制。 this.Gettype()用于获取Client类型的脚本“ isActive ”,它是唯一键。 毕竟这些JavaScript代码。 无论你想做什么,它都可以是功能。 最后确实要求你要么为你在这里写的JavaScript代码脚本标记。


     ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "HelloWorld", "HelloWorld();", true);
链接地址: http://www.djcxy.com/p/30993.html

上一篇: how to call a javascript function from c# code behind

下一篇: Javascript confirm without code in code behind