I have a SharePoint 2010 list, which has attachments!!
I am using a custom grid-view to display some selected List fields from the list.
I would like to include the attachment as an embedded document in the Grid-view, Is that possible?
|
I have a SharePoint 2010 list, which has attachments!! I am using a custom grid-view to display some selected List fields from the list. I would like to include the attachment as an embedded document in the Grid-view, Is that possible? |
|||||
|
|
Assuming you're working in server side code: Take a look a the Attachments property of the SPListItem, it returns an SPAttachmentCollection, from there itterate the SPFiles and use the Url property to get the site relative path and you should be sorted from there. Some times the docs on MSDN are actually quite helpful :) |
|||