I have a LinkButton in a web control and I want to bind the event at the page where I use this web control.
LinkButton's href attribute is renderedas below.
javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ctl00$CoreContent$Content$scale1", "", false, "", "/thema/fi/product/reviews.aspx", false, true))
It doesn't fire the event that I have attached in the web page.
My question is how this LinkButton is supposed to know that it should go to the event method I binded.
Thanks.
PS: I'm not asking how to bind an event to a linkbutton.