通过沙盒解决方案中的代码更改Web部件中的属性

时间:2013-03-14 04:58:04

标签: sharepoint sharepoint-2010 sandbox-solution

这是我在服务器场解决方案中保存我的webpart属性的方式:

SPContext.Current.Web.AllowUnsafeUpdates = true;
SPFile file = SPContext.Current.File;
SPLimitedWebPartManager mgr = file.GetLimitedWebPartManager(PersonalizationScope.Shared);

for (int index = 0; index < mgr.WebParts.Count; index++)
{
    if (mgr.WebParts[index].ID == this.ID)
    {
        ((MyWebpartType) mgr.WebParts[index]).MyStringProperty = "Hello World!";
        mgr.SaveChanges(mgr.WebParts[index]);
    }
}
SPContext.Current.Web.AllowUnsafeUpdates = false;

工作正常。

现在我必须在沙箱解决方案中实现相同目标,但没有SPLimitedWebPartManager可用。

那么如何通过沙盒解决方案webpart中的代码更改webpart属性?

2 个答案:

答案 0 :(得分:1)

找到解决方案,在webpart中调用SetPersonalizationDirty()会保存所有属性。

答案 1 :(得分:0)

您可以定义自己的自定义webpart属性,如下所示:

 public partial class BannerSlider : System.Web.UI.WebControls.WebParts.WebPart
    { 
        [WebBrowsable(true),
        Personalizable(PersonalizationScope.Shared),
        WebDescription("My WebPart Property"),
        Category("Custom Properties"),
        WebDisplayName("My WebPart Property")]
        public string MyProperty
        {
            get { return __myProperty; }
            set { _myProperty= value; }
        }

        protected void Page_Load(object sender, EventArgs e)
        {
             this.MyProperty = "Hello World";