This entry has been moved to mySharePointBlog.com. Go here.
Category: SharePoint author: admin comments: 6 Comments
Post Comment Now
This entry has been moved to mySharePointBlog.com. Go Here.
Category: SharePoint author: admin comments: Comments Off
Comments Off
protected void Page_Load(object sender, EventArgs e)
{
// Show admin link if they have access to the admin directory. //
hyperLinkAdmin.Visible = hasAccessToDir("admin");
}
protected bool hasAccessToDir(string dir)
{
return System.IO.Directory.Exists(MapPath(dir));
}
Category: .NET, ASP author: admin comments: No Comments
Post Comment Now