LinkButton Handles OnClick Equivelent in C#

To handle a Linkbutton onclick in VB.NET the LinkButton is declared and a handler sub declared: <asp:linkbutton id=”cmdAdd” runat=”server” ResourceKey=”Add” BorderStyle=”none” CausesValidation=”true” /> Private Sub cmdAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAdd.Click ::: ::: End Sub C# doesn’t support the VB.net handles on click, the function is simply declared. The LinkButton declaration […]

Read More… from LinkButton Handles OnClick Equivelent in C#