欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-05-03 16:31:28
复制代码 代码如下: using mysql.data.mysqlclient; mysqlconnection conn = new mysqlconnection("s...
复制代码 代码如下:

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();