0

我正在使用 VS2010 构建窗口表单应用程序。在我的登录表单上,我收集用户 ID
和密码,然后单击登录按钮,如果验证成功,则将
用户引导到主表单。
我想使用字典来存储从数据库读取的用户名和密码。
然后关闭连接。然后,我比较从文本框中输入的值与值:
字典中的 userd 和 passward。成功直接到主窗体
这里是我的代码。请帮助`

string connectionstring =
   "Data Source =localhost;Initial Catalog=HSM;" +
   "User Id=sysad;Password=mypassword";

   SqlConnection connection = new SqlConnection(connectionstring);
   SqlCommand selectcmd = new SqlCommand("Select * from users");
   SqlDataReader reader ;
   Dictionary<string,string> logintest = new Dictionary<string,string>
   try
   {
      connection.Open();
      reader = selectcmd.ExecuteReader();
      while (reader.Read())
      {                
         Mainform main1 = new Mainform();
         this.Hide();
         main1.Show();
      }

      reader.Close();
       `  
4

1 回答 1

0

简单的

foreach (KeyValuePair<string, int> pair in logintest)
{
  Console.WriteLine("{0}, {1}", pair.Key, pair.Value);
}
于 2012-05-04T17:58:00.537 回答