Hi,
Please check these properties :
ItemTemplate
ItemTemplatePosition
TableHeaderTemplate
Or you can draw a table on the OnPreRender method:
protected override void OnPreRender(EventArgs args)
{
base.OnPreRender(args);
uploaderAttachment1.GetItemsTable().Visible=false;//hide the default table...
foreach(AttachmentItem item in uploaderAttachment1.Items)
{
//fill item info into your custom data list control!
}
}
Regards,
Terry