We need 4 things to do this:
1) Download Mysql database at:
2) Download the GUI for Mysql at: http://dev.mysql.com/downloads/gui-tools/5.0.html
3) Download the connector for .NET 2.0 at: http://dev.mysql.com/downloads/connector/net/5.0.html
4)Download the Mysql ODBC driver at: http://dev.mysql.com/downloads/connector/odbc/3.51.html
All these links will be seen by you if you observe carefully at http://dev.mysql.com/downloads/
First read the article at:
http://www.15seconds.com/issue/050210.htm
Here the installation is given with screen shots
http://www.15seconds.com/issue/050210.htm
Locate the MySql.Data.dll at:
C:\Program Files\MySQL\MySQL Connector Net 5.0.8.1\Binaries\.NET 2.0\
in your system.
Just write a small program in asp.net
MySqlConnection conn = new MySqlConnection
DataSet ds = new DataSet();
da.Fill(ds);