I have a normal image for delete and an Asp.Net button. If I click the image which is inside the javascript I need to make the Asp.Net button click and perform it's operation.
Is there any way to do that from the client side: Here is my normal Html button:
This is my Asp.Net button:
<asp:Button ID="Button1" runat="server" Text="Button" />
This is my code behind:
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
//Do something//
End Sub