0

我有一个 MOSS2007 Web 应用程序(使用发布站点模板创建)。在这个应用程序中,用户可以添加各种感兴趣的项目。这些感兴趣的项目作为一个组保存在数据库中。因此,每个用户都有不止一组的兴趣。允许用户随意添加/删除/编辑群组内的兴趣。

我的查询如下

  • 当用户添加感兴趣的项目并且在 MOSS2007 会话超时之前从未将其保存在组中时,如何处理?

  • 如何处理用户添加感兴趣的项目、保存并在 MOSS2007 会话超时之前添加更多的情况。

  • 如何处理用户在 MOSS2007 会话超时之前添加感兴趣的项目、保存它、从已保存的项目中删除一些项目的情况。

4

1 回答 1

0

I'd suggest:

How to handle cases when user adds items of interest and never saves it in a group before MOSS2007 session times out?

Items are either stored in a local cookie, so they are there when the user logs in to MOSS again, or are lost.

How to handle cases when user adds items of interest, saves it and then adds more before MOSS2007 session times out.

New items are either saved in cookie, or lost.

How to handle cases when user adds items of interest, saves it, delete some items from saved ones before MOSS2007 session times out.

The deletion method should delete the records from the database. So they would be synced already. If however, you need a rollback option, you could do something similar to the Recycle bin functionality in MOSS...

Hope that helps.

于 2009-04-06T12:46:52.063 回答