Posts

Q. What does AllowUnsafeUpdates do ? Ans. If your code modifies Windows SharePoint Services data in some way, you may need to allow unsafe updates on the Web site, without requiring a security validation. You can do by setting the AllowUnsafeUpdates property. C#: ? 1 2 3 4 5 6 7 8 9 10 using(SPSite mySite = new SPSite("yourserver")) { using(SPWeb myWeb = mySite.OpenWeb()) { myWeb.AllowUnsafeUpdates = true; SPList interviewList = myWeb.Lists["listtoinsert"]; SPListItem newItem = interviewList.Items.Add(); newItem["interview"] = "interview"; newItem.Update(); } } Q What does RunWithElevatedPrivileges do? Ans. Assume that you have a Web Part in which you want to display information obtained through the Windows SharePoint Services object model, such as the name of the current site collection owner, usa

Find missing number in sequence

To find missing number in sequence, Use below given code :             var list = new List<int>(new[] { 1, 2, 4, 7, 9 });             var result = Enumerable.Range(1, 10).Except(list);             foreach (int i in result)             {                 Console.WriteLine(i.ToString());             }             Console.Read(); When you run above given code you will get missing numbers : 3 5 6 8 10

SharePoint 2013 : Drag & Drop feature not working

Hi , I was working with SharePoint 2013 on IE 9 & I saw that Drag & Drop feature was not working on my IE. I checked it again on my other PC which got IE 10 & Office 2013 installed. It was working there. Then I upgraded my IE9 to IE10 now it is working good. It means you must have IE 10 to run all new features of SharePoint 2013.

Download ebook Learning JavaScriptMVC

Download ebook Learning JavaScriptMVC Learn to build well-structured JavaScript web applications using JavaScriptMVC Book Description JavaScriptMVC is a client-side, JavaScript  framework  that builds maintainable, error-free, lightweight applications as quickly as possible. As it does not depend on  server  components, it can be combined with any web service interface and server-side language. Learning JavaScriptMVC will guide you through all the framework aspects and show you how to build small- to mid-size well-structured and documented client-side applications you will love to work on. Book Details Publisher: Packt Publishing By: Wojciech Bednarski ISBN: 978-1-78216-020-5 Year: 2013 Pages: 124 Language: English File size: 1.9 MB File format: PDF Download ebook Learning JavaScriptMVC