我想在文本框的onblur事件上查询数据库。 我想要的是,当我在第一个文本框中输入ID并且在onblur事件发生之后,数据库中相应ID的名称将显示在另一个文本框或标签中。
答案 0 :(得分:0)
您可以尝试使用此代码,在事件中编辑此代码
var yourParameter = ....; //Your Value from your event , the value of textbox
var mySelectQuery = ....; //Enter name stored procedure
var myConnectionString = ....; //Enter string connection
using(var myConnection = new SqlConnection(myConnectionString))
{
using(var myCommand = new SqlCommand(mySelectQuery, myConnection))
{
myConnection.Open();
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.Parameters.Add(
new SqlParameter("@YourParameter", yourParameter));
SqlDataReader myReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
while(myReader.Read())
{
Console.WriteLine(myReader.GetString(0));
}
}
}
答案 1 :(得分:0)
为此使用ontextboxchanged事件。
<asp:TextBox ID="TextBox1" runat="server" AutoPostBack="true" OnTextChanged="TextBox1_TextChanged" />
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
//call the database stored procedure
}