ユーザー名とパスワードをチェックするための WCF Web サービスを作成し、MYSQL データベースを使用してユーザー名とパスワードが存在するかどうかをチェックします。ユーザー名、パスワード、ログインボタン用の2つのテキストボックスを使用してWP7でアプリケーションを作成しました。アプリケーションを実行すると、「KeyNotFoundException」が発生します。私にその理由を教えてください。
my code is here
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using consumeWCFwp7DB.ServiceReference1;
namespace consumeWCFwp7DB
{
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
}
private void btnadd(object sender, RoutedEventArgs e)
{
ServiceReference1.ServiceClient obj = new ServiceReference1.ServiceClient();
string username = txtusername.Text.ToString();
string password = txtpassword.Text.ToString();
obj.loginAsync(username, password);
obj.loginCompleted+=new EventHandler<loginCompletedEventArgs> (obj_loginCompleted);
}
void obj_loginCompleted(object sender, loginCompletedEventArgs e)
{
if (e.Error == null)
{
MessageBox.Show(e.ToString());
}
else
{
MessageBox.Show("Error");
}
}
}
}