을하지 않을 경우
protected void Search_Click(object sender, EventArgs e)
{
try
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["dbconnect"].ConnectionString);
con.Open();
SqlCommand cnd = new SqlCommand();
cnd.CommandText = "select * FROM [dbconnect] ";
cnd.Connection = con;
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = cnd;
DataSet ds = new DataSet();
da.Fill(ds, " dbconnect ");
SqlCommandBuilder cb = new SqlCommandBuilder(da);
DataRow drow = ds.Tables["dbconnect"].NewRow();
drow["userName"] = TextBox3.Text;
drow["rollno"] = TextBox4.Text;
ds.Tables["TableName "].Rows.Add(drow);
da.Update(ds, " dbconnect ");
}
catch(Exception EX)
{
string A = "";
}
}
은 내가 어떻게이 MSG를 게시하는 내 레이블을 만들 수 있습니다 FOUND " 여기에 내가 clickin 후 데이터를 확인하고 표시하는 데 사용되는 코드는 버튼을 제출할이다 lblMessage라고하는 웹 페이지에 Label 컨트롤을 추가 한 다음 위 코드의 끝에서 할 수 있습니다. 뭔가 ...
lblMessage.Text = "No results found";
나는 IF 절도 있어야한다고 생각합니다. 이후 매번 그것을 표시하고 싶지는 않지만 단지 데이터가 발견되지 않았기 때문에 – Lara
@Lara 네, 그래야합니다. 나는 특정 질문에 대한 답변, 즉 결과를 표시하는 방법에 집중하려고했지만 결과가없는 경우에만 표시하고 싶다는 것은 맞습니다. 내 대답이 맞다면 올바른 것으로 표시하고 upvote로 표시하십시오. –