当前位置:主页 > 软件编程 > ASP代码 >

asp textbox获取显示mysql数据示例代码

时间:2020-10-18 14:21:37 | 栏目:ASP代码 | 点击:

复制代码 代码如下:

using MySql.Data.MySqlClient;

MySqlConnection conn = new MySqlConnection("server=(local);database=abc;uid=;pwd=");
conn.Open();
MySqlCommand com = new MySqlCommand("select * from tb_xxjj",conn);
MySqlDataReader dr = com.ExecuteReader();
dr.Read();
TB_xxjj.Text = dr["title"].ToString();
content.Text = dr["content"].ToString();

您可能感兴趣的文章:

相关文章