程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> ASP.net(c#)用類的思想實現插入數據到ACCESS例子

ASP.net(c#)用類的思想實現插入數據到ACCESS例子

編輯:ASP.NET基礎
昨天寫了一半,一直沒弄清楚當ACCESS數據庫的連接代碼寫成類的時候路徑該怎麼寫,搞了半天,還是用絕對路徑解決了,似乎Server.MapPath沒法在cs文件中使用.

要實現的功能如下:

盡量用類的思想來完成數據的插入,因為這個例子簡單,所以我也就不多說什麼.大家自己看代碼,不懂的可以到論壇交流.

1、首先是ACCESS數據庫的設計,數據庫名:myData,表名:student

字段名稱                    數據類型
sid                           自動編號
sname                       文本
score                          數字
2、建立插入的頁面default.aspx,具體代碼如下:

<%@ Page Language="C#" Debug="true" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!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 runat="server">
    <title>無標題頁</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="姓名"></asp:Label>
        <asp:TextBox ID="tbxName" runat="server"></asp:TextBox><br />
        <br />
        <asp:Label ID="Label2" runat="server" Text="成績"></asp:Label>
        <asp:TextBox ID="tbxScore" runat="server"></asp:TextBox><br />
        <br />
        <asp:Button ID="btnInsert" runat="server" OnClick="btnInsert_Click" Text="插入數據" />
</div>
    </form>
</body>
</html>


3、雙擊default.aspx進入default.aspx.cs,代碼如下:

default.aspx.cs的主要代碼如下:


using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void btnInsert_Click(object sender, EventArgs e)
    {
        student myStu = new student();

        myStu.sname = this.tbxName.Text;
        myStu.score = Convert.ToInt32(this.tbxScore.Text);
        int i= MyClass.insertScore(myStu);
        if (i == 1)
        {
            Response.Write("插入成功");
        }
        else
        {
            Response.Write("插入失敗");
        }
    }
}


4、在App_Code建立兩個類,一個是MyClass.cs,另一個是student.cs,

MyClass.cs的主要代碼如下:


using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;

/// <summary>
/// MyClass 的摘要說明
/// </summary>
public class MyClass
{

 public MyClass()
 {
  //
  // TODO: 在此處添加構造函數邏輯
  //
 }
    public static OleDbConnection creatCon()
    {//Data Source=後面請寫你自己的數據庫的絕對路徑
        return new OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0;Data Source=C:/Documents and Settings/nan/My Documents/Visual Studio 2005/WebSites/WebSite3/App_Data/myData.mdb");
    }
    public static int insertScore(student myStu)
    {
            string cmdText = "insert into student(sname,score) values('" + myStu.sname + "','" + myStu.score + "')";
            OleDbConnection con = MyClass.creatCon();
            con.Open();
            OleDbCommand cmd = new OleDbCommand(cmdText, con);
            int result = Convert.ToInt32(cmd.ExecuteNonQuery());
            con.Close();
            return result;

    }
}


student.cs的主要代碼如下:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// student 的摘要說明
/// </summary>
public class student
{
    public string sname;
    public int score;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved