linkbutton not raising event.

  • Thread starter Thread starter prashant khandalkar via DotNetMonster.com
  • Start date Start date
P

prashant khandalkar via DotNetMonster.com

Hello everyone.

I am using asp:linkbutton in my web page. But when i click on the linkbutton it is not firing the click event please help me. It's urget my email address is (e-mail address removed).
 
Hey!

A little more information could help analyze your problem in more detail.
What version of Visual Studio are you using?

While the PRO/Enterprise versions work great, I have noticed that the
Standard version sometimes removes event handler registrations (for click
events, for example). The actual event handler is not removed, just the
registration of the event handler for the button. Try adding the event
again, with the same name.

-Lenard
 
Surely many reasons can cause this problem. asp:linkbutton must be defined
as runat server. ViewState must be enabled. Other possible reason it may
lost its event handler...
 
Back
Top