摘要:
1.做了开发这么久,居然不知道Viewstate是怎么用的!真悲剧……Viewstate主要是用来保留页面数据的。下面是某一种情况的用法。 private string MCategory { set { ViewState["MCategory"] = value; } get { if (ViewState["MCategory"] == null) ret... 阅读全文
摘要:
public static string LogPath { get { string path = string.Empty; path = Environment.GetFolderPath(Environment.SpecialFolder.CommonProgramFiles) + @"\Microsoft Shared\web server extensions\12\LOGS\"; ... 阅读全文