Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在图像文件夹中有一张图像;我想在 RadGrid 中使用从后面的代码填充的数据表来展示这一点
我怎样才能做到这一点?
DataTable dt = new DataTable(); dt.Columns.Add("Image Column"); dt.Rows.Add("<img src= ../image/image.png />"); RadGrid1.DataSource = dt;