Home » questions » I need to know how to display images in datagrid?
I need to know how to display images in datagrid?
in my database (access) the images of products are saved as ole objects and desciptions are also ole object(word doc)...i need to know how to get this into the datagrid...can someone please help me with this?? am using access and asp.net
sub page_load(sender as object, e as eventargs)
Dim conn as OleDbConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Inetpub\wwwroot\mainpage\double module\Online Sales and Inventory.mdb")
Dim comm as OleDbCommand = new OleDbCommand("SELECT * FROM BooksInfo Where Author = Isabel Allende")
Dim ds as new dataset
DataGrid1.dataSource=ds.Tables("BooksInfo")
DataGrid1.databind()
end sub
when i run..the datagrid does not show

Answers
Indian_Male
On 2006-08-02 05:59:52