How To Invoke Function At Server Side?

  1. //First Of All Drag A Button From The Toolbox In The Window From & Then Put The Server Function In That Click Event….  
  2.   
  3. protected void NewButton_Click(object sender, EventArgs e)   
  4. {  
  5.     ServerFunctionName();  
  6. }  
  7.   
  8. //Now You Can Call That Function Using This Javascript Code.... Secondly, you can call the server function at JavaScript by using the following code,  
  9.   
  10. document.getElementById("NewButton").click(); 
Next Recommended Reading Function Overloading In JavaScript