Share via


WSS中List权限的一些额外设置

首先,只有在WSS中才可以对List单独设权限,对于SharePoint中的List,是不能单独设置权限的。

第二,即使在WSS中,对于文档库,也是不能单独设置权限的。

好了,那么对于WSS中的List,是怎样设置权限的呢?

大家可以进入WSS中的List权限设置页面,在这里有一个选项“Modify item-level security”,点进去以后,可以看到,对于读,选项为:

All items

Only their own

而对于写,选项为:

All items

Only their own

None

而如果使用编程,可以使用ReadSecurity和WriteSecurity,具体为:

ReadSecurity

1 — All users have Read access to all items.

2 — Users have Read access only to items that they create.

WriteSecurity

1 — Write all items.

2 — Write only my items.

4 — Write no items (read-only list).

这样,我们在创建一些应用,例如BBS的时候,就可以更方便了。