将数据从 asp.net 页面插入到 sqlserver 数据库
数据库中有两个表。
一个是 'books'
,有 4 列
pkid,title,price,writer(int)
,另一个是 'persons'
,有 1 列
pkid, name,value(int).
一个 ASP.NET 页面上有一个名为
title,price,writer and a submit button.
“我想要”的文本框,填充该作者 txtbox 时'persons'
表中提供了一些名称,单击提交按钮,它将在 'books'
writer 列中存储整数 'value'
。
there are two tables in database.
one is 'books'
with 4 columns
pkid,title,price,writer(int)
and other is 'persons'
with columns
pkid, name,value(int).
one asp.net page is there with text boxes named
title,price,writer and a submit button.
i want that on filling that writer txtbox with some name which is available in 'persons'
table and clicking that submit button it will store integer 'value'
in 'books'
writer column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单。
DropDownList
Persons
表中的所有可用人员填充DropDownList
。更新表集
类似查询。但在这一切之前,我建议您浏览一下 使用 asp.net 的基本增删改查操作以及它们是如何实现的。这里有一些 ASP.NET 快速入门教程。
Its simple.
DropDownList
DropDownList
with all of the persons available in yourPersons
table, when your page loads.update table set
like query.But before all of this, I would suggest you go through basic crud operations using asp.net and how they are achieved. Here are some asp.net quick start tutorials.