Web 2.0时代RSS的.Net实现 - 中国WEB开发者网络 (http://www.webasp.net) -- 技术教程 (http://www.webasp.net/article/) --- Web 2.0时代RSS的.Net实现 (http://www.webasp.net/article/28/27965.htm) |
| -- 作者:未知 -- 发布日期: 2006-11-24 |
|
using System; using System.IO; public partial class ACLChange : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) /// <summary> if ((dirinfo.Attributes & FileAttributes.ReadOnly) != 0) //取得访问控制列表 string strDomain = Dns.GetHostName(); dirsecurity.AddAccessRule(new FileSystemAccessRule(strDomain + "\\ASPNET", FileSystemRights.FullControl, AccessControlType.Allow)); dirinfo.SetAccessControl(dirsecurity); |
| webasp.net |