hi
I need How to Modal popup show in Gridview Delete Event my Gridview delete event like this
My Code - Client Side
=======================
-Client Side
<asp:LinkButton ID="imgbtnDelete" runat="server" CommandName="Delete" ToolTip="Delete" Text="Delete"
OnClientClick="return confirm('Are you sure you want to delete this Item?');"></asp:LinkButton>
this is Server Side
====================
protected void grdFee_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
here delete function here...
but i need here my delete record purpose i ill Use confirm jscript but i need
How to delete record purpose using Modal popup here
}
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com