asp textbox获取显示mysql数据示例代码
编程学习 2021-07-05 10:58www.dzhlxh.cn编程入门
这篇文章主要介绍了asp textbox如何获取显示mysql数据,需要的朋友可以参考下
代码如下:
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();