私は現在、学校のプロジェクトの出会い系サイトを開発しており、現在、ログイン機能を作ろうとしています。自動登録およびログイン機能を使用することは想定されていません。
データベースとの接続はすべて、WCF サービス アプリケーションを経由する必要があります。WCF を使用せずに実装する方法は知っていますが、今すぐ使用する必要があり、Google で検索しても見つかりません。
public bool login(string UserName, string PassWord, bool isActive = true) {
try {
DALDataContext db = new DALDataContext();
var qry = from m in db.tblUsers
where m.userName == UserName && m.password == PassWord && m.isActive == isActive
select m;
if (qry.Count() > 0) {
return true;
} else {
return false;
}
}
catch (Exception) {
return false;
}
}
それが私が作った方法なので、次のようにWebアプリケーションに実装するとうまくいくはずです:
ServiceReference1.Service1Client obj = new ServiceReference1.Service1Client();
protected void btnLoginUser_Click1(object sender, EventArgs e) {
try {
string UserName = txtUserName.Text;
string PassWord = txtPassWord.Text;
obj.login(UserName, PassWord);
if (true) {
Session["me"] = UserName;
Response.Redirect("~/MyProfile.aspx");
}
}
catch (Exception){
}
}
私はこれに何時間も取り組んできましたが、これのレジスタ部分は機能しています...だから私は何か本当に間違っているか何かをしています。Visual Studio 2010 と SQL Server 2008 R2 を使用しています。
[解決済み]
これが私がそれを解決した方法です
protected void btnLoginUser_Click1(object sender, EventArgs e)
{
try
{
string UserName = txtUserName.Text;
string PassWord = txtPassWord.Text;
bool isActive = true;
if (obj.login(UserName, PassWord, isActive))
{
Session["me"] = UserName;
Response.Redirect("~/MyProfile.aspx");
}
else
{
lblErr.Text = "fail";
}
}
catch (Exception)
{
}
}
}
}