如果用户在数据库中的文本框中插入值,则显示到gridview(在网格视图中显示),否则在c#中显示错误消息 如果成功找到,则显示else显示在文本框中插入时找不到数据.....我发送enter image description here
答案 0 :(得分:6)
您可以通过 TextBox 上的用户插入值搜索数据库中的数据。如果您从数据库获取数据而不是填充网格上的数据,否则显示您想要的 ErrorMessage / NotFound 。
string searchText = TextBox1.Text;
var dbResponse = GetDataFromDB(searchText); // This method return data from database
if(dbResponse != null)
{
// set value into grid
}
else
{
//Error Message or Not Found
}