我有一个文本框,用于从数据库中输入多个 Student_name,用“;”分隔 连同一个按钮。单击此按钮时,我想将每个学生姓名与文本框分开,并想检查输入的学生姓名是否有效/是否存在于数据库表中。现在我需要的是,如果其中任何一个不存在,我想生成一个警告框,上面写着“不存在具有“学生姓名”的学生”。如果多个姓名无效,则想显示“学生姓名 1,2,.. 不存在”这怎么可能?
String PageRefs =TextBox1.Text;
if (PageRefs.Contains(";"))
{
String[] PageRefArray = PageRefs.Split(';');
for (int f = 0; f < PageRefArray.Length; f++)
{
String name = PageRefArray[f];
//Comparing the values from table to check name exists in table.here for example the default name is set to "Niya"
if (name != "niya")
{
ScriptManager.RegisterStartupScript(this, this.GetType(), "alertmessage", "javascript:alert('studentID '"+name +'" doesnt exists')", true);
return;
}
}
如何在警报框中显示不存在的学生姓名列表?