我有一个具有特殊权限的Sharepoint 2013文档库 对于页面上未授予的用户,您会看到错误:
错误[1] Web部件错误:访问被拒绝。您无权执行此操作或访问此资源。相关ID ...
但我不希望用户看到此消息 而不是这个,我想看到库名称,当他们点击我要链接的库名称时,访问标准拒绝页面。
我该如何解决这个问题?
答案 0 :(得分:-1)
将您的代码放入Try and Catch Tags。
try
{
}
catch (SPException ex)
{
//When You Chatch this Exception
//You will Draw Dynamic Hyperlink with library name and it's
//URL="http://ServerName/_layouts/15/AccessDenied.aspx"
}