我有一个文本框,当我从文本框中丢失光标时,我想检查数据库中的数据是否有重复记录。
所以请帮我解决这个问题。
答案 0 :(得分:1)
VIPUL,
我为您创建了以下示例。这可以帮助您使用数据库中的数据检查文本框中的数据。
private void textBox1_Leave(object sender, EventArgs e)
{
//Put the value to be checked with the Database in a Variable.
var valueToCheck = textBox1.Text;
//Create connection with the database.
var sqlConn = new SqlConnection("Connection String to Database");
//Create dataset instance to fill with the return results from the Database.
var ds = new DataSet();
//Create SqlCommand to be execute on the database.
var cmd = new SqlCommand("SELECT * FROM TABLE WHERE 'field to be checked' = " + valueToCheck, sqlConn);
//Create SqlDataAdapter
var da = new SqlDataAdapter(cmd);
ds.Clear();
try
{
da.Fill(ds);
}
catch (Exception ex)
{
}
foreach (DataRow row in ds.Tables[0].Rows)
{
//do you stuff here.
}
}
我希望这有帮助!
答案 1 :(得分:1)
这可能会解决您的问题:
<asp:TextBox ID="textBox1" runat="server" onblur="Your Function"></asp:TextBox>