JScript

  • Thread starter Thread starter Jenny
  • Start date Start date
J

Jenny

Hi all,

how can I start a client side JScript function instead of
doing a postback if a button (webforms) is clicked?

Thx
Jenny
 
Jenny said:
Hi all,

how can I start a client side JScript function instead of
doing a postback if a button (webforms) is clicked?

Thx
Jenny

yourButton.Attributes["onClick"] = "clientsidejs()";

Hans Kesting
 
Back
Top