如何将数据库中的值与文本框值进行比较
我正在使用 sql server 2005 和 Visual stdio 2008 我的页面中有一个文本框,格式为 txtEmailId 我想将数据库中的这个值与 email_id 列进行比较[它是主键] 为了避免单击按钮时数据库中的不一致,而不使用自定义验证器
I am using sql server 2005 and visual stdio 2008
i have a textbox in my page as txtEmailId
i want to compare this value in database with email_id column[it is a primary key]
to avoid inconsistence in database on a button click with out using custom validator
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有几种方法。
1:使用sql命令进行数据库查询,如下所示:
There are several ways.
1: Do a db query using sqlcommand like below:
我的语法可能有问题,但这就是您要找的吗?
My syntax might be off, but is this what you are looking for?
<代码>