我开始了 Windows 窗体的新项目。第一页是UserLogin
。在表单加载事件中,我将登录表从数据库放入内存。我正在使用一个存储所有读写操作方法的类。
当我在 formload 事件中调用类时,错误出现“在当前上下文中不存在”
我可能缺少一些参考资料或头文件名..
请帮助提前谢谢
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Configuration;
using System.Web;
namespace InvestmentAndReturns
{
public partial class UserLogin : Form
{
public UserLogin()
{
InitializeComponent();
CenterToScreen();
}
public string UserID = null;
private string userPass = null;
public string UserGroup = null;
DataTable UserLoginTable;
int logintry = 1;
public bool LoginStatus = false;
private void Form1_Load(object sender, EventArgs e)
{
txtUserID.Select();
string cmd = "Select * from UserLogin";
UserLoginTable = DbRdRw.SqlDbRead(cmd, "UserLogin");
}
DbRdRw:这是类 SqlDbRead:这是读取方法