MOSS 网站集文档 - 限制文件名中的特殊字符
我试图阻止用户在上传文档时在文件名中输入方括号 ([]) 或其他字符。
有没有办法在 SharePoint 管理中心阻止此行为,或者是否有我可以更改的设置?
I am trying to block users from entering square brackets ([]) or other charcters to a filename while uploading a document.
Is there a way to block this in SharePoint Central Administration or is there settings that I can change?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建一个事件接收器或工作流程来执行此操作。
看看这篇文章中的第一个示例。
You would need to create an event receiver or a workflow to do this.
Have a look at the first sample in this post.
我必须在同步调用(ItemAdding 和 ItemUpdating 方法)期间拦截 EventReciever 并取消事件。
I had to intercept the EventReciever during synchronous call (ItemAdding and ItemUpdating method) and cancel the event.