asp textbox获取显示mysql数据示例代码
2018-09-06 13:10
阅读:358
复制代码 代码如下:
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();
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:asp textbox获取显示mysql数据示例代码
文章链接:http://soscw.com/index.php/essay/10980.html
文章标题:asp textbox获取显示mysql数据示例代码
文章链接:http://soscw.com/index.php/essay/10980.html
评论
亲,登录后才可以留言!