|
将值保存到WEBPART的属性中(SharePoint 2003会将设置的值保存到数据库中)
// 一个自定义属性 this.tvalue = "现在需要什么?"; SPWeb web = SPControl.GetContextWeb(this.Context); SPWebPartCollection webparts = web.GetWebPartCollection( this.Context.Request.Url.ToString(), Storage.Shared); this.SaveProperties = true; webparts.SaveChanges(this.StorageKey);
但是有个问题,这段代码在模拟身份的情况下,多数没能成功保存。 详细原因是:http://support.microsoft.com/?kbid=892866 |
|