Trying to add a jpg image to the datatable dtsun. How do I do this?
Dim dtsun As New DataTable()
dtsun.Columns.Add("col1")
dtsun.Columns.Add("col2")
dtsun.Columns.Add("col3")
dtsun.Rows.Add(ImageUrl("~/jpg/" & col1name & ".jpg"), ImageUrl("~/jpg/" & col2name & ".jpg"), ImageUrl("~/jpg/" & col3name & ".jpg"))
GridView1.DataSource = dtsun
GridView1.DataBind()