how to bind the image from the sharepoint list in gridview using vs 2010 as webpart
< asp : GridView ID ="gvPictureLibrary" AutoGenerateColumns ="False" runat ="server" EnableModelValidation ="True"> </ asp : GridView > Code-behind: protected void Page_Load( object sender, EventArgs e) { if (!IsPostBack) { SPWeb site = SPContext .Current.Web; SPList list = site.Lists[ "PL" ]; DataTable dt = new DataT...