I have this asp.net button
<asp:Button ID="okButton" runat="server" Text="Okay" OnClick="okButton_Click" />
this is the onButton_Click function
protected void okButton_Click(object sender, EventArgs e){
//bla bla bla
//bla bla bla
}
I have also this javascript function
function callCenterDailyChartYMC() {
//bla bla bla
}
My question
How can I execute that javascript function after finishing executing the button on click function?
Thanks