I tried to select a specific value from database by using this code:\[code\] Dim rs, data, lo data = "http://stackoverflow.com/questions/14086683/Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _ Server.MapPath("games.mdb") rs = Server.CreateObject("ADODB.Recordset") rs.open("select * FROM [index] where ID1=1 ", data) Image1.ImageUrl = "images/" + rs("url").ToString lo =rs("url") rs.MoveNext() rs.Close()\[/code\]When I run it, I get:\[code\]show System.__ComObject \[/code\]