如何使 SharePoint PeopleEditor WebControl 可序列化? C#、SharePoint

发布于 2024-11-30 04:09:13 字数 315 浏览 1 评论 0原文

我基本上想扩展 PeopleEditor 使其 Serialized 以便存储在 ViewState 中,因为它是动态创建的,并且我在 期间需要它>回发

我有这个:

[Serializable]
public class PeopleEditor : Microsoft.SharePoint.WebControls.PeopleEditor, ISerializable
{
}

但不知道从那里去哪里。有人有意见吗?

I would like to basically extend PeopleEditor to make it Serializable in order to store in ViewState because it is created dynamically and I need it during PostBack.

I have this:

[Serializable]
public class PeopleEditor : Microsoft.SharePoint.WebControls.PeopleEditor, ISerializable
{
}

But am not sure where to go from there. Does anyone have some input?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦年海沫深 2024-12-07 04:09:13

而不是这样做。我建议仅存储动态创建的人员编辑器控件的计数和值,并在回发时创建人员编辑器控件的计数并恢复这些值。

Instead of doing this way. I would recommend to store only the count and values of people editor control which are created dynamically and upon postback create the count number of people editor control and restore the values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文