本文介绍了验证学生ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

数据库如下;



学生ID



1

2

3

4

5

$



表名学生。



我的设计如下;



学生ID Textbox1





在运行模式下,当我输入学生ID时,我想验证学生表中是否有该学生ID。



如果用户在Textbox1中错误输入学生ID,则显示消息输入正确的学生ID。



如何验证。



请帮帮我。



问候,

Narasiman P.

Database as follows;

Student id

1
2
3
4
5
6

Table name Student.

My design as follows;

Student id Textbox1


In run mode when i enter the Student id, i want to validate whether that student id in the Student table or not.

if user wrongly enter the student id in Textbox1, shows the message Enter Correct student id.

how can i validate.

Please help me.

Regards,
Narasiman P.

推荐答案


using (SqlConnection con = new SqlConnection(strConnect))
    {
    con.Open();
    using (SqlCommand cmd = new SqlCommand("SELECT COUNT(iD) FROM myTable WHERE id=@ID", con))
        {
        cmd.Parameters.AddWithValue("@ID", textbox1.Text);
        int count - cmd.ExecuteScalar();
        if (count != 0)
            {
            // It exists.
            }
        else
            {
            // It doesn't exist
            }
        }
    }



这篇关于验证学生ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 19:45