Hello
I am using SqlDataSource to bind and edit and delete the listview item, but the problem is that i cant delete a specific record
<asp:ListView ID="ListView1" runat="server" DataSourceID="AdminNewsSQL">
<EditItemTemplate>
<div style="background-color:#c1c1c1;">
<table class="table table-user-information">
<tbody>
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("NewsID") %>' ReadOnly="True"></asp:TextBox></td>
</tr>
<tr>
<td><asp:TextBox ID=" ...
Go to the complete details ...