How to Delete Data from Database Using ASP.NET
This is the Source Code ShowData.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowData.aspx.cs" Inherits="MyFirstProgram.ShowData" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Show Data</title> <link href="Content/bootstrap.min.css" rel="stylesheet" /> </head> <body> <form id="form1" runat="server"> <div> <h4>Student's Table Data</h4> <hr /> <asp:Table ID="Table1" runat="server" CssClass="table table-bordered"> <asp:TableHeaderRow> <asp:TableH...
Comments
Post a Comment