SharePoint 普通Application页面设置匿名访问
时间:2014-09-05 19:51:31
收藏:0
阅读:322
在Application页面代码中添加如下代码:
public partial class Detail : UnsecuredLayoutsPageBase
{
protected override bool AllowAnonymousAccess
{
get
{
return true;
}
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
原文:http://www.cnblogs.com/TroubleShooting/p/3958556.html
评论(0)