Tuesday, June 19, 2012

SharePoint Upload Multiple Files Control

In one of my SharePoint implementation/deployment, I needed to upload folders and files to one document library but upload multiple files controls was not visible and instead I was getting explorer where it was hard to upload folders. 

After digging into that I found out that this somehow that control was missing on client machine from where I was accessing the site, in order to register that control into my client machine I created a custom html page which includes the following:




<html>
<body>
<object id='idUploadCtl'
        name='idUploadCtl' 
        classid='CLSID:07B06095-5687-4d13-9E32-12B4259C9813' 
        width='638px' 
        height='261px'>
</object>
</body>
</html>



I accessed that custom page and it did the magic for me, and added the control on client machine. After that I access the SharePoint site and it worked.


Ref links:

No comments:

Post a Comment