vote up 1 vote down star

I have some code which does the following:

const string KEY_CHK = "Microsoft.IW.PartCheck";
SPWeb curWeb = SPContext.Current.Web;
if (!curWeb.Properties.ContainsKey(KEY_CHK))
{ 
   curWeb.Properties.Add(KEY_CHK, "true");
   curWeb.Properties.Update();
}

This runs as a webpart in a master page in Sharepoint 2007.

I would like to be able to update the value of a property in a non-code way.
Through Sharepoint admin screens, or via Sharepoint designer.

Is this possible? Where/how can I do it?

flag

68% accept rate

2 Answers

vote up 2 vote down check

Hello,

Try using SharePoint Manager 2007 from http://www.codeplex.com/spm.

.b

link|flag
That looks perfect thanks. – Bravax Feb 12 at 17:18
vote up 0 vote down

nope, you cannot set web properties via the UI. maybe there's something on CodePlex

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.