如何从服务器端 asp.net 调用 Javascript 函数

本文关键字:调用 Javascript 函数 net asp 服务器端 | 更新日期: 2023-09-27 18:35:56

我有一个Textbox GridView如果文本框中的文本被更改,我想更改 Label.Text。但是我无法调用.cs页面中编写的javascript函数。TbUnitCost_TextChanged方法是否有任何错误。

这是我的 aspx 页面

<ItemTemplate>
  <asp:TextBox Style="text-align: right" ID="TbUnitCost" runat="server" Width="80px" Text='<%#Bind("Unit_Cost")%>' AutoPostBack="true" OnTextChanged="TbUnitCost_TextChanged"  TextMode="Number"></asp:TextBox>
 </ItemTemplate>

页面隐藏代码如下

 protected void TbUnitCost_TextChanged (object sender, EventArgs e)
    {
        GridViewRow currentRow = (GridViewRow)((TextBox)sender).Parent.Parent;
        int rowNo = currentRow.RowIndex;
        string gridName = "GridWorkExpenses";
        TextBox tbunitCost = (TextBox)currentRow.FindControl("TbUnitCost");
        int row = Convert.ToInt32(tbunitCost.Text);
        tbunitCost.Attributes.Add("onchange","javascript:calculateTotalCost('"+rowNo+"','"+gridName+"');");
    }

而javascript函数是:

<script type ="text/javascript">
    function calculateTotalCost(rowNo, GridName) {                        
        if (GridName== 'GridWorkExpenses') {
            var rowscount = document.getElementById('<%=GridWorkExpensesSheet.ClientID%>').rows.length;
            return calculateTotalUnitCost("GridWorkExpensesSheet", rowscount,rowNo);
        }
   }
 </script>     

如何从服务器端 asp.net 调用 Javascript 函数

尝试使用这个:

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Script", "CalculateTotalCost", true);

描述任何其他问题(如果有)。

ScriptManager.RegisterStartupScript(this, this.GetType(), "Script", "<script type='text/javascript'>CalculateTotalCost</script>", false); 

是另一种方法

这是一个非常古老的讨论[1]:D RegisterStartupScript和RegisterClientScriptBlock之间的问题?

也请参考此内容。

嗨,

您必须将所有命令写入一个字符串中

 ScriptManager.RegisterClientScriptBlock((sender as Control), GetType(), "jQueryCommand", "$('.MenuLoginLink').hide();$('.MenuUsername').show();$('.MenuUsername').text('" + Currentmember.Mobile  + "');$('.MenuExit').show();" +
                " $('.btnLoginInFriends').hide();$('#HiddenSession').val('" + int.Parse(Session["CurrentUserID"].ToString()) + "');", true);