1

我正在开发一个 asp.net Web 应用程序,我在源代码中有这个脚本:

 <script language="javascript" type="text/javascript">
    function showWindow(URL, controlID, targetControlID,id)
    {
      noweOkno = window.open( URL + '?controlID='+controlID+'&targetControlID=' + 
         targetControlID+'&id='+ id, '_blank', 
         'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, ' +
         'status=no, width=760, height=600, left=30, top=30')
      noweOkno.focus();
    }
   </script>

我可以用这段代码调用它:

Button4.Attributes["onClick"] = string.Format("showWindow( 'Child.aspx','{0}', '{1}','{2}');", tbVer.ClientID, Hidden1.ClientID, id_act);

我的问题是,如何在某些 C# 方法中调用 javascript,例如:

protected void someMethod()
{
-I want to call showWindow('Child.aspx','{0}', '{1}','{2}');", tbVer.ClientID, Hidden1.ClientID, id_act);
}

谢谢

4

2 回答 2

0

你可以使用客户端脚本管理器

 ClientScriptManager.RegisterStartupScript(this.GetType(), "AKey", "MyFunction();", true);

http://msdn.microsoft.com/en-us/library/asz8zsxy.aspx

于 2012-07-08T09:32:36.280 回答
0

您可以注册脚本块以在页面上运行,例如:

ClientScript.RegisterStartupScript(GetType(),"hwa","function_name;",true);
于 2012-07-08T09:33:07.320 回答