资源简介

Ajax定时读取数据库(源代码发布)
Ajax定时读取数据库(源代码发布)

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Collections;
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;
public partial class autoread_add : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {

    }
    protected void Button1_Click(object sender EventArgs e)
    {

        this.Label1.Text=“添加“+ addcount();
    }

    private string addcount()
    {
        try
        {
            OleDbConnection conn = getdb();
            conn.Open();
            OleDbCommand oc = new OleDbCommand();
            string res = ““;
            string sql1 = “insert into ttt(titletttstate) values (‘“+this.TextBox1.Text+“‘‘“+this.TextBox2.Text+“‘1)“;
            oc.CommandText = sql1;
            oc.Connection = conn;
            oc.ExecuteNonQuery();
            return “OK“;

        }
        catch (Exception ee)
        {
            return “WRONG“;
        }

    }
    private OleDbConnection getdb()
    {
        OleDbConnection conn = new OleDbConnection();
        conn.ConnectionString = @“Provider=Microsoft.Jet.OLEDB.4.0;“ +
                @“Data source=“ + Server.MapPath(“db.mdb“);
        return conn;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     331776  2008-12-01 12:26  autoread\db.mdb

     文件        106  2008-11-25 14:25  autoread\update.aspx

     文件       1389  2008-11-25 14:27  autoread\update.aspx.cs

     文件       1399  2008-11-25 15:09  autoread\add.aspx.cs

     文件       1405  2008-11-25 14:31  autoread\read.aspx.cs

     文件       1666  2008-11-25 15:10  autoread\add.aspx

     文件       3628  2008-12-01 12:26  autoread\index.htm

     文件       2925  2008-03-20 14:38  autoread\xajaxb1-2.js

     文件        102  2008-11-25 13:25  autoread\read.aspx

     目录          0  2008-11-25 13:06  autoread

----------- ---------  ---------- -----  ----

               344396                    10


评论

共有 条评论