Click here to Skip to main content
15,891,905 members
Articles / Productivity Apps and Services / Sharepoint

Site Property Management (SharePoint 2010)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
11 Jul 2010CPOL4 min read 49.6K   712   14  
Provides an administrative UI to manage custom properties for a SharePoint site
//
//	Utility.cs - © Questech Systems
//	This notice must stay intact for use. Not for resale.
//
using System;
using System.Configuration;
using System.Globalization;
using System.Web;
using System.Web.UI;

using Microsoft.SharePoint;
using Microsoft.SharePoint.Utilities;

namespace QuestechSystems.SharePoint.ApplicationPages
{
    public static class Utility
    {
        public const string MsgConfirmDeleteSitePropertyFormatString = "return confirm('{0}');";
        public const string PageNameManageSiteProperties = "MngSiteProperties.aspx";
        public const string QueryKeyParamProperty = "property";
        public const string QueryKeyParamSource = "Source";

        public static string GetAddSitePropertyUrl()
        {
            return String.Format("AddSiteProperty.aspx?{0}={1}", QueryKeyParamSource, PageNameManageSiteProperties);
        }

        public static string GetEditSitePropertyUrl(string propertyNameUrlEncoded)
        {
            return String.Format("EditSiteProperty.aspx?{0}={1}&{2}={3}", QueryKeyParamProperty, propertyNameUrlEncoded, QueryKeyParamSource, PageNameManageSiteProperties);
        }

        public static void ModalDialogClose(string returnValue)
        {
            Page page = HttpContext.Current.Handler as Page;
            page.Response.Clear();
            page.Response.Write(String.Format(@"<script language=""javascript"" type=""text/javascript"">window.frameElement.commonModalDialogClose(1, ""{0}"");</script>", returnValue));
            page.Response.End();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
A Microsoft Certified Professional Developer and Technology Specialist.

Experience and expertise in SharePoint 2016 / 2013 / 2010 / 2007.

Role ranges from a developer in a multi-person team to a solution consultant with expert-level skills, leading a project to completion status.

Proven experience working effectively in a team environment and a self-managed environment.

Comments and Discussions