ASP.NET如何操作数据库?

来源:百度知道 编辑:UC知道 时间:2024/05/22 00:25:43
ASP.NET(C#)如何对数据库(SQL)进行访问修改!是ADO.NET吗?有没有什么代码给我看看 最好简单点

执行一个简单的Select查询,并返回数据表到DataGrid
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SQL" %>
<html>
<script language="C#" runat="server">
protected void Page_Load(Object Src, EventArgs E)
{
SQLConnection myConnection = new SQLConnection("server=localhost;uid=sa;pwd=;database=pubs");
SQLDataSetCommand myCommand = new SQLDataSetCommand("select * from Authors", myConnection);
DataSet ds = new DataSet();
myCommand.FillDataSet(ds, "Authors");
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
}
</script>
<body>
<h3><font face="Verdana">撼雪喷云之查询数据表返回到 DataGrid </font></h3>
<ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"