大家好! 我遇到了C#winform的重登陆问题。就是说,如果一个用户登陆了后,就不能再次登录。
我想在数据库表中设置一个int标识字段login,如果登录了login=1,未登录login=0。那么我在登录时怎么去获取这个login字段呢?希望有高手指点一下。能给出...
我想在数据库表中设置一个int标识字段login,如果登录了login=1,未登录login=0。那么我在登录时怎么去获取这个login字段呢?
希望有高手指点一下。能给出这段代码最好
谢谢
string sql = "select * from tb1_Operator where nOperatorId=@nOperatorId and szPassword=@szPassword";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.Parameters.AddWithValue("nOperatorId", username);
cmd.Parameters.AddWithValue("@szPassword", pwd);
object obj = cmd.ExecuteScalar();
if (obj == null)
{
MessageBox.Show("用户名或密码不正确!", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
} 这是我验证登录名和密码的代码。如果要同时验证login字段,把代码添加在哪里?请指点。谢谢! 展开
希望有高手指点一下。能给出这段代码最好
谢谢
string sql = "select * from tb1_Operator where nOperatorId=@nOperatorId and szPassword=@szPassword";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.Parameters.AddWithValue("nOperatorId", username);
cmd.Parameters.AddWithValue("@szPassword", pwd);
object obj = cmd.ExecuteScalar();
if (obj == null)
{
MessageBox.Show("用户名或密码不正确!", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
} 这是我验证登录名和密码的代码。如果要同时验证login字段,把代码添加在哪里?请指点。谢谢! 展开
4个回答
展开全部
呵呵,下面的代码就可以实现,Program.cs文件里,Mutex类提供了这个功能,不用数据库的!
using System;
using System.Threading;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Configuration;
namespace LR
{
static class Program
{
//声明程序为互斥体
static Mutex mutex = new Mutex(false, "ThisShouldOnlyRunOnce");
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
bool Running = !mutex.WaitOne(0, false);
if (Running == true)
{
MessageBox.Show("程序已经启动!");
return;
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
哈哈!问题理解错了!我这个是解决客户端重复启动的问题的!惭愧!
using System;
using System.Threading;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Configuration;
namespace LR
{
static class Program
{
//声明程序为互斥体
static Mutex mutex = new Mutex(false, "ThisShouldOnlyRunOnce");
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
bool Running = !mutex.WaitOne(0, false);
if (Running == true)
{
MessageBox.Show("程序已经启动!");
return;
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
哈哈!问题理解错了!我这个是解决客户端重复启动的问题的!惭愧!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以在验证登录时,一起取出来,再次登录时使用。当异地登录时,可以利用ado.net从数据库中取值使用
更多追问追答
追问
string sql = "select * from tb1_Operator where nOperatorId=@nOperatorId and szPassword=@szPassword";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.Parameters.AddWithValue("nOperatorId", username);
cmd.Parameters.AddWithValue("@szPassword", pwd);
这里写不完,加到补充里了,请你再看一下
追答
cmd.ExecuteScalar();返回的是第一行的第一列,你到底这时候取的是什么啊?
你就在object obj!=null的时候验证嘛,obj!=null证明你的用户名和密码是正确的吧,在这个时候判断啊,判断如果login=0,表示还没有登录,这时候修改login=1;如果login=1,修改login=0。这样不行吗?这样是异地登录,如果只是一个地方判断是否已经登录,那你就直接在代码中定义一个静态变量就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以在在下面加个 else if 判断 login 是否==1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询