大家都等着急了吧,直接上方法
1、确定asp.net的文档头部语句:<%@ Page Language="C#" %>
2、引用数据库语句:
1
2
|
<%@ import Namespace= "System.Data" %> <%@ import Namespace= "System.Data.OleDb" %> |
3、建立一个数据库:data.mdb
4、js代码script语句的编写:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script runat= "server" > // Insert page code here // void Page_Load(){ string db=@ "database/data.mdb" ; string connStr= "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source=" +Server.MapPath(db)+ ";" ; string SQLcmd= "create table IEB_webs(ID identity primary key,title varchar(255) Default Null)" ; OleDbConnection conn= new OleDbConnection(connStr); conn.Open(); OleDbCommand OleCmd= new OleDbCommand(SQLcmd,conn); OleCmd.ExecuteNonQuery(); //执行SQL命令 Response.Write( "数据表建立完成!" ); } conn.Close(); conn= null ; OleCmd= null ; } </script> |
5、把JS语句写入HTML文本中
1
2
3
4
5
6
7
8
9
|
< html > < head > </ head > < body > < form method = "post" runat = "server" > <!-- 此地调用数据库内容 --> </ form > </ body > </ html > |
6、最后完整的代码结构如:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<%@ Page Language="C#" %> <%@ import Namespace="System.Data" %> <%@ import Namespace="System.Data.OleDb" %> < script runat = "server" > // Insert page code here // void Page_Load(){ string db=@"database/data.mdb"; string connStr="PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source="+Server.MapPath(db)+";"; string SQLcmd="create table IEB_webs(ID identity primary key,title varchar(255) Default Null)"; OleDbConnection conn=new OleDbConnection(connStr); conn.Open(); OleDbCommand OleCmd=new OleDbCommand(SQLcmd,conn); OleCmd.ExecuteNonQuery(); //执行SQL命令 Response.Write("数据表建立完成!"); } conn.Close(); conn=null; OleCmd=null; } </ script > < html > < head > </ head > < body > < form method = "post" runat = "server" > <!-- 此地调用数据库内容 --> </ form > </ body > </ html > |
以上就是asp.net连接access既快速又简单的办法,希望大家能够按照我分享的步骤实现asp.net与access的连接。