Here is an ASP.NET button:
<asp:Button ID="okButton" runat="server" Text="Okay" OnClick="okButton_Click" />
This is the okButton_Click
function:
protected void okButton_Click(object sender, EventArgs e){
//perform tasks here
}
There is also a JavaScript function:
function callCenterDailyChartYMC() {
//perform tasks here
}
Question:
How can I trigger the execution of the JavaScript function after the ASP.NET button's click function finishes?
Thank you!