Tagged Questions
0
votes
2answers
189 views
Password required? The remote server returned an error: (401) Unauthorized
I'm trying reference a sharepoint list item in my aspx page using the Sharepoint Client Object Model. I have been granted 'Full Control' privileges on this list. The problem is that I can only ...
2
votes
1answer
423 views
Get Error 401 when trying to download a document from a library programatically
I'm trying to download a document with this code :
using (Impersonator impersonator = new Impersonator())
{
siteURL += "?NoRedirect=true";
System.Net.WebClient _WebClient = new ...