Calling server-side function from client-side

  • Thread starter Thread starter Benny
  • Start date Start date
B

Benny

Hello all,

How can i call a server side function (in .aspx.cs) from a client side
(in .aspx) using javascript?

thanks,

benny
 
Exactly in the same way as ASP.NET server control do it.
For instanse, put Server side button on the page, write
any function for button_onclick, next , hide your button
and invoke generated client side js function when you need.
 
Back
Top