<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %>
<%@ Import Namespace="System.Data"%> <%@ Import Namespace="System.Data.OleDb"%> <script runat="server"> void Page_Load(Object Sender,EventArgs E) { //定义 String strConn,strSql; OleDbConnection myConn; OleDbCommand myComm; //连接数据库 strConn="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("DataBase/MyBook.mdb");//数据库连接字符串 myConn=new OleDbConnection(strConn); myConn.Open(); //添加记录 strSql="insert into DB_Book(LinkName,Sex) values('联系人','男')"; myComm=new OleDbCommand(strSql,myConn); myComm.ExecuteNonQuery(); //修改记录 strSql="update DB_Book set LinkName='浪迹天' where ID=1"; myComm=new OleDbCommand(strSql,myConn); myComm.ExecuteNonQuery(); //删除记录 strSql="delete from DB_Book where LinkName='联系人'"; myComm=new OleDbCommand(strSql,myConn); myComm.ExecuteNonQuery(); //显示数据 strSql="select * from DB_Book order by ID desc";//sql语句 myComm=new OleDbCommand(strSql,myConn); myDataGrid.DataSource=myComm.ExecuteReader(); myDataGrid.DataBind(); myConn.Close(); } </script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>ASP.Ne测试</title> </head> <body> <asp:DataGrid CellPadding="5" CellSpacing="1" ID="myDataGrid" runat="server"></asp:DataGrid> </body> </html>
下面的不重要,主要是上面连接数据库的部分重要,可以连接上以后再拖一个gridview控件进行设置即可,下面是今做了一半的程序.另外记录一个非常不错的学习html的网站,抽时间看以下上面asp的内容.