Learn SharePoint App Development

Sunday, December 29, 2013




To say good by year 2013  with great learning for SharePoint.

Join Us
https://www.facebook.com/events/259036634265291/?previousaction=join&source=1

https://www.anymeeting.com/AccountManager/RegEv.aspx?PIID=EA51D987804839

SherePoint 2013 Rest Vs CSOM and Cloud Business App

Sunday, December 15, 2013




Join Us

SharePoint Add Users To SharePoint Group

Saturday, December 7, 2013



//Add User in SharePoint Groups
public void addUserToGroup(string groupName, string useName)
{
    string strUrl = "http://MySites:9091/";
    using (SPSite site = new SPSite(strUrl))
    {
        using (SPWeb web = site.OpenWeb())
        {
            try
            {
                web.AllowUnsafeUpdates = true;
                SPUser spUser = web.EnsureUser[userName];

                if (spUser != null)
                {
                    SPGroup spGroup = web.Groups[groupName];
                    if (spGroup != null)
                    spGroup.AddUser(spUser);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                web.AllowUnsafeUpdates = false;
            }
        }
    }
}

ensure that user have permission to execute this method.

Helpful Link and Ref:
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.ensureuser.aspx
http://msdn.microsoft.com/en-us/library/office/ms414400.aspx
http://gallery.technet.microsoft.com/office/Bulk-remove-Unique-bddd8764

Developing Apps for SharePoint 2013 - Dubai Nov 6

Tuesday, December 3, 2013








At the heart of Dubai Internet City, UAESPUG delivered the first session in Dubai on Developing Apps for SharePoint 2013 in Microsoft's auditorium.

The event proved to be a success with an overwhelming attendance of more than 60 professionals and enthusiasts, representing the IT industry in the UAE. 
The two co-speakers, Usama Wahab Khan and Jamil Haddadin did an amazing job of introducing the topic clearly and effectively. They did their best to ensure that everyone was able to grasp the major concepts required in developing SharePoint 2013 apps. 

The feedback received after the session on different aspects (presentation, topic, speakers etc.) was very encouraging and points of improvement were noted for even better events in the future. 

Success of the event is contributed to the great efforts done by the speakers and, more importantly, the lively audience who took their time to attend and participate with their ideas and discussions. 

In addition, the event could never have been a success if it wasn't for the great team work behind the scenes to prepare and organize the session. Finally, we are grateful to have Microsoft host the event at their auditorium.

Great Team, Great Effort.

Join us for Future  Community Activities. 
http://spuae-public.sharepoint.com

Follow us