C# & SharePoint. Read SharePoint list items to datatable
In this post I write some examples of C# coding for SharePoint list items. These methods are rather fast and it’s very actual for SharePoint. Read more»
In this post I write some examples of C# coding for SharePoint list items. These methods are rather fast and it’s very actual for SharePoint. Read more»
Using of control FileUppload has some specialities – there must be made a PostBack on your event. But using UpdatePanel there’s no PostBack event on client click. For correct work you should use PostBackTrigger. Read more»
To add multiple upload control and set up handler for it is quite easy in Visual Studio 2013. Read more»
C# and .Net are rich in methods to complete the task. With each new version we have new classes and methods. Reading and parsing XML is not an exclusion. Below I’ll tell you about 3 methods for reading XML-data in C#. Read more»
I found a great collection of Visual Studio shortcuts. While coding I often comment some lines of code. Using shortcuts it’s even more easy. It’s not a common combination – select lines to comment and press Ctrl + K then Ctrl + C, to uncomment – Ctrl + K then Ctrl + U. Read more»
In this post I’ll describe two ways to sort List<T> generic collection by one of it’s fields. It’s very useful and not easy for beginners. Read more»
Using this method you can copy attachments from one list item to another. You can add it to SharePoint workflow or any other action. Read more»
Not so long ago when I was very tired I wrote an SQL-query in my C# application in Visual Studio, but I got error on build. The error was ” Index (zero based) must be greater than or equal to zero and less than the size of the argument list.”. Read more»
Once one friend of mine was making s SharePoint web-part with a lot of available filters. He couldn’t make it with only list so webPart was the only way. Read more»
There’s a rather pretty way to use something like PHP strip_tags() function in C# just using regular expresion Read more»