SharePoint code samples
-
Custom Key Filters control for Metadata Navigation (SharePoint 2010)
-
SharePoint 2010 FAQ List with Accordion View
Custom List for storing FAQ. For rendering items is utilized jQuery Accordion UI element.
-
Nintex Workflow 2010 deployment utilities
SharePoint 2010 project that demonstrates how to programatically deploy Nintex Workflow 2010 artifacts (workflow templates, context data)
1. Automating deployment of reusable workflows in Nintex Workflow 2010
2. Designing and deployment of Context Data in Nintex Workflow -
SharePoint 2010 Video sharing and embedding
1. Video Links List for embedding and sharing YouTube and similar Video content
2. YouTube Aggregator web part
Am getting an error while uploading large file its size is more than 2MB,
Error : The request message is too big. The server does not allow messages larger than 2097152 bytes.
Here is the my code,
byte[] Content = fileContent;
FileCreationInformation fci = new FileCreationInformation()
{
Content = Content,
Url = fileRelURL,
Overwrite = true
};
presentFolder.Files.Add(fci);
_context.Load(presentFolder);
_context.ExecuteQuery();
This Office 365 Sharepoint site.
Please help me.