Forum Discussion
Form for external users to submit resume and details into sharepoint list
This is an online environment, it will be anonymous uploads. I thought this might be too big an ask. My next question would be if there was a way to build from scracth something similar.
The main problem will be that SharePoint Online (Office 365) doesn't support anonymous access, other than the Public Web site which is being removed in the next several months. So anonymous users won't be able to browse the page to even see the button. You may have to look at a regular anonymous web site in Azure. In that case you should be able to write regular javascript or asp.net code behind the web site to allow the file upload and web form. Then take the contents of the web form and add it to a list using a service account and REST calls against SharePoint.
Graham Austin wrote:This is an online environment, it will be anonymous uploads. I thought this might be too big an ask. My next question would be if there was a way to build from scracth something similar.