当前上下文不存在名称
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当前上下文不存在名称相关的知识,希望对你有一定的参考价值。
private void button1_Click(object sender, EventArgs e)
bool error = false;
if(ValidateInput())
int num=0;
try
string sql=string.Format("SELECT COUNT(*)FROM Users WHERE Id=0AND LoginPwd='1'",
int.Parse(txtLoginId.Text.Trim()),txtLoginPwd.Text.Trim());
sqlCommand command=new SqlCommand(sql,DBHelper.connection);
DBHelper.connection.Open();
num=Convert.ToInt32(command.ExecuteScalar());
catch(Exception ex)
error=true;
Console.WriteLine(ex.Message);
finally
DBHelper.connection.Close();
if(!error&&(num==1))
UsersHelper.loginId=int.Parse(txtLoginId.Text.Trim());
MainForm mainForm=new MainForm();
mainForm.Show();
this.Visible=false;
else
MessageBox.Show("输入的账号或密码有错!","登录提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
private bool ValidateInput()
if(txtLoginId.Text.Trim()=="")
MessageBox.Show("请输入登录的号码","登录提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
txtLoginPwd.Focus();
return false;
else if(txtLoginPwd.Text.Trim()=="")
MessageBox.Show("请输入密码","登录提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
txtLoginPwd.Focus();
return false;
return true;
不存在
txtLoginId。。
txtLoginPwd
能帮我改一下么?
当前上下文中不存在名称“txtloginID”
C# 当前上下文中不存在名称“Console”
class Program
class C
public int Value = 0;
static void Main(string[] args)
int v1=0;
int v2=v1;
v2 = 927;
C r1=new C();
C r2=r1 ;
r2.Value =112;
Console.WriteLine("Values:0,1",v1 ,v2 );
Console.WriteLine("Refs:0,1",r1 .Value ,r2 .Value);
Console.ReadLine();
初学C# 求大神
以上是关于当前上下文不存在名称的主要内容,如果未能解决你的问题,请参考以下文章