问题描述
protectedvoidButton1_Click(objectsender,EventArgse){stringname=TextBox1.Text;stringpwd=TextBox2.Text;XmlDocumentxmlDoc=newXmlDocument();xmlDoc.Load(@"e:/LoginList.xml");XmlNodeListusersList=xmlDoc.SelectNodes("/LoginList/user");boolNoofYes=false;for(inti=0;i<usersList.Count;i++){if("name".Equals(usersList[i].SelectSingleNode("Username").InnerText)&&"p".Equals(usersList[i].SelectSingleNode("Password").InnerText)){NoofYes=true;break;}elseif(NoofYes==true){Response.Write("<scriptlanguage=javascript>alert('登录成功自动跳转到登陆界面!')<");Response.Write("/Script>");}else{Response.Write("<scriptlanguage=javascript>alert('用户名或密码有误')<");Response.Write("/Script>");//转到错误页面}}}
解决方案
解决方案二:
F10跟踪调试啊...看程序是怎么样运行的,你看看你的For循环运行了没....
解决方案三:
这能看出个甚??调试吧,估计没有读取出数据。
时间: 2024-10-21 07:36:04