Board index » Web Programming » linkbutton question

linkbutton question

Web Programming444
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?


-
 

Re:linkbutton question

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;")





--

rajagopal



*** Sent via Developersdex www.developersdex.com">www.developersdex.com ***

Don't just participate in USENET...get rewarded for it!

-