JS触发ASP.NET服务器端控件的方法

<asp:Button ID="Button_regId" runat="server" Font-Bold="False" OnClick="HistoryPushMessage_Click" Text="添加" />

$("#<%=Button_regId.ClientID%>").click();

 protected void HistoryPushMessage_Click(object sender, EventArgs e)
    {
        Response.Redirect("~/SJZD/HistoryPushMessage.aspx");
    }

原文地址:https://www.cnblogs.com/zhangxiaolei521/p/5613655.html