通过 ASP.net 的复选框单击事件将数据插入 Access 数据库

发布于 2024-11-29 15:29:31 字数 342 浏览 1 评论 0原文

我正在尝试制作 asp.net 页面

标准

我有产品列表。 (使用listview)

ProductID    Proudct name      Price        ADD TO CART(checkbox)

现在我使用access 2007作为数据库。 C# 用于代码隐藏文件。我想将产品添加到复选框事件的数据库中。因此,如果用户选中 20 项中的 10 项复选框。我想在复选框事件上编写插入查询

是否可以做到?如果可能,请向我提供知识/代码,我该怎么做?

请记住,我是新手,正在学习阶段,所以让它变得简单或在评论中添加指导线。

I'm trying to make asp.net page

Criteria

I have product list. (using listview)

ProductID    Proudct name      Price        ADD TO CART(checkbox)

Now I am using access 2007 for database. C# for code behind file. I want add product in to database which is on the event of checkbox. So if user check 10 item check box Out of 20 . I want write insert query on event of checkbox

Is it possible to do it? If it possible please provide me knowledge/ code how can I do it?

Please keep in mid that I am new and learning stage so make it easy or put gudieline in comments.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你好,陌生人 2024-12-06 15:29:31

听起来您想使用 OnCheckedChanged 事件。

<asp:CheckBox ID="CheckBox1" runat="server" Text="Hello World!" OnCheckedChanged="CheckBox1_CheckedChanged" />

在你的代码后面:

protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
    //CREATE CONNETION HERE
    OleDbConnection conn = new OleDbConnection ("<YOUR CONNECTION STRING HERE>");
    OleDbCommand command = new OleDbCommand();
    command.Connection = conn;

    //CREATE YOUR OWN INSERT/UPDATE COMMAND HERE
    command.CommandText= "<YOUR COMMAND TEXT HERE>";
    command.Parameters.Add ("@Argument1", OleDbType.String).Value = CheckBox1.Text;        
    command.ExecuteNonQuery();
    conn.Close();    
}

It sounds like you want to use the OnCheckedChanged event.

<asp:CheckBox ID="CheckBox1" runat="server" Text="Hello World!" OnCheckedChanged="CheckBox1_CheckedChanged" />

And in your code behind:

protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
    //CREATE CONNETION HERE
    OleDbConnection conn = new OleDbConnection ("<YOUR CONNECTION STRING HERE>");
    OleDbCommand command = new OleDbCommand();
    command.Connection = conn;

    //CREATE YOUR OWN INSERT/UPDATE COMMAND HERE
    command.CommandText= "<YOUR COMMAND TEXT HERE>";
    command.Parameters.Add ("@Argument1", OleDbType.String).Value = CheckBox1.Text;        
    command.ExecuteNonQuery();
    conn.Close();    
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文