linkbutton question

  • Thread starter Thread starter Leo
  • Start date Start date
L

Leo

I have a linkbutton that I want to respond to the click event with in
javascript and suppress the postback. Is there a way to do this?
 
Returning false from javascript for a method on a control will prevent
ASP.NET from processing the postpack.
you can use this code in Page_Load method of the ASP.NET Page:

MyButton.Attributes.Add("onclick", _
"call what you want to do" & _
";return false;")
 
Back
Top