skip to Main Content

In ASP.NET WebForms how to mimic in javascript code the click on an asp:LinkButton with the "CommandName" and the "CommandArgument" being set by code?

On the server side I have an asp:LinkButton control that I will make invisible in the future: <asp:LinkButton ID="LnkCSCommand" runat="server" Text="CSCommand" CommandName="CommandNameTest" CommandArgument="CommandArgumentTest" CssClass="wi_dq_grid_cmd" > </asp:LinkButton> and I hooked an handler function to it: Private Sub LnkCSCommand_Click(sender As Object, e…

VIEW QUESTION
Back To Top
Search