欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net快速连接access

程序员文章站 2024-02-16 13:29:04
大家都等着急了吧,直接上方法 1、确定asp.net的文档头部语句:<%@ page language="c#" %> 2、引用数据库语句:...

大家都等着急了吧,直接上方法

1、确定asp.net的文档头部语句<%@ page language="c#" %>

asp.net快速连接access

2、引用数据库语句:

<%@ import namespace="system.data" %>
<%@ import namespace="system.data.oledb" %>

asp.net快速连接access

3、建立一个数据库:data.mdb

asp.net快速连接access

4、js代码script语句的编写:

<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文本中

<html>
<head>
</head>
<body>
  <form method="post" runat="server">
    <!-- 此地调用数据库内容 -->
  </form>
</body>
</html>

6、最后完整的代码结构如:

<%@ 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的连接。