如何将数据库信息显示到C#textbox控件里

2024年11月18日 00:27
有3个网友回答
网友(1):

是不是可以这样理解 - 把登陆窗体中TextBox和ComBoBox中的值传到窗体2,然后在窗体2用TextBox显示出来?

如果是这样的话--首先在窗体2中定义2个变量用来接收从登陆窗体传过来的值
窗体2定义的变量用Public修饰
Public string name = "";
public string type = "";
Form2窗体的Load方法
TextBox1.Text = name + type;

在登陆窗体的Button按钮里面写
From2 f2 = new Form2();
f2.name = this.TextBox1.Text;
f2.type = this.ComboBox1.SelectedItem.ToString();
f2.Show();
另外,虚机团上产品团购,超级便宜

网友(2):

导入数据库的支持:
using system.data.sqlclient;

string connectionStrings = "server = .;uid = sa;pwd = 111,database = MyDB " ;//数据示例
Sqlconnection conn = new Sqlconnection(connectionStrings );
conn.open();
string cmdText = "select * from 表名";
Sqlcommand cmd = new Sqlcommand (cmdText,conn);
Sqldatareader reader = cmd.executeReader();
while(reader.read()==true)
{
txtbox1.text = reader["姓名"].tostring();
txtbox2.text = reader["性别"].tostring();
break;
}
conn.Close();

差不多就是这样吧,因为是凭记忆没用工具写,不是很规范,希望能帮助到你

网友(3):

查询后,直接绑定就可以了