asp textbox获取显示mysql数据示例代码
asp textbox获取显示mysql数据示例代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:usingMySql.Data.MySqlClient;MySqlConnectionconn=newMySqlConne...

复制代码 代码如下:

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教程学习
热门ASP教程学习
编程开发子分类