1

In a web page i am using jquery and some other .js files.

The LinkButton is not firing its postback event.

<asp:LinkButton ID="LinkButton1" runat="server"   onclick="LinkButton1_Click">LinkButton</asp:LinkButton>

i am stuck in creating poskback of LinkButton control.

Any idea, how to force linkbutton to do postback.

MikeSmithDev
  • 15,731
  • 4
  • 58
  • 89
Saifal Maluk
  • 121
  • 2
  • 5
  • 14

1 Answers1

-1

LinkButton does not have an onclick event, try Click instead. UPDATE But in markup we have to use OnClick.

I don't know what are you try to achieve but LinkButton has a property called PostBackUrl which can be also helpful.

Update

What happens if you turn off validating with CausesValidation setting to false?

Peter Kiss
  • 9,309
  • 2
  • 23
  • 38