无法使用c#查找要插入AS访问数据库的代码

时间:2015-06-09 06:37:43

标签: c# asp.net gridview oledb

我对此很新。 我有一个MS访问数据库(.mdb只有两列),我使用gridview链接它。它显示网页上数据库中的任何内容。我还有一个文本框的帖子按钮(就像在facebook中发布状态的那个)。 gridview仅显示输入的文本并占用自动时间。 问题是,我似乎无法编写将在点击时更新数据库的代码。 我在web.config文件中添加了一个连接。 声明命名空间,

在.aspx文件中,我使用

获取了sql数据源
<asp:SqlDataSource ID="Test" runat="server" 
    ConnectionString="<%$ ConnectionStrings:DB1 %>" 
    ProviderName="<%$ ConnectionStrings:DB1.ProviderName %>" 
    SelectCommand="SELECT [Message], [Date] FROM [DB1] order by id desc">
</asp:SqlDataSource>

背后的代码看起来像这样 -

protected void btnpost_Click(object sender, EventArgs e)
{
  this.******** = "INSERT INTO DB1 (message) + values ('" + txtpost.text + "')";

  gridview.databind();

  txtpost.Text="";
}

有人能告诉我'********'中有什么工作吗?

2 个答案:

答案 0 :(得分:1)

缺少的部分是:

Test.SelectCommand = "INSERT INTO DB1 (message) + values ('" + txtpost.Text + "')";

答案 1 :(得分:1)

试试这个

using (OleDbConnection conn = new OleDbConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString))
    {

       OleDbCommand cmd = new OleDbCommand("INSERT INTO DB1 (message) values (@message)");
       cmd.Connection = conn;
       conn.Open();
       cmd.Parameters.Add("@message", OleDbType.VarChar).Value = txtpost.Text.Trim();
       cmd.ExecuteNonQuery();
       conn.Close();
    }