/// /// 获取到过滤字TXT,将其放入到字符串中 /// public static void LoadIllegalchar() { string fileName = AppDomain.CurrentDomain.BaseDirectory.ToString() + "Filter...
分类:
其他好文 时间:
2014-07-01 13:33:40
阅读次数:
137
1、取得控制台应用程序的根目录方法方法1、Environment.CurrentDirectory 取得或设置当前工作目录的完整限定路径方法2、AppDomain.CurrentDomain.BaseDirectory 获取基目录,它由程序集冲突解决程序用来探测程序集2、取得Web应用程序的根目录方...
分类:
其他好文 时间:
2014-06-28 20:59:08
阅读次数:
158
DataSet ds = XmlHelper.GetDataSetByXml(AppDomain.CurrentDomain.BaseDirectory + "/Config/ConfigName.xml");//取得xml文件DataTable dt = ds.Tables["table_Name...
分类:
其他好文 时间:
2014-06-27 21:33:05
阅读次数:
239
Asp.net在类库中获取某文件的绝对路径。这个问题在初学的时候就经常碰到过,经常是查了忘,忘了查。浪费了大量的今天专门写个文章,以后到这里查。有时间顺便记得研究下这个东西。 在主程序目录就不说了Page.Server.MapPath(); 在类库里面,AppDomain.CurrentD...
分类:
Web程序 时间:
2014-06-25 20:36:07
阅读次数:
270
public static void WriteLog(string msg) { string
appPath = AppDomain.CurrentDomain.BaseDirectory; string ServerPath = appPath +
@"\Log" + DateTime.No....
分类:
其他好文 时间:
2014-06-07 07:15:18
阅读次数:
292
//
获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory//
获取模块的完整路径。System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName//
获取和设置当前目录(该进...
1.发布新程序后,进不去网站,提示‘Attempted to access an unloaded
AppDomain.
’,是应用程序池死掉的原因,对其进行回收重启后恢复正常。2.在更新读取调度规则的程序后,发现调度规则仍然没有显示出来,是文件没有iis读取权限的原因,添加权限后正常3.调试具有分...
分类:
其他好文 时间:
2014-06-06 17:40:42
阅读次数:
192
DataSet ds = new DataSet();
ds.ReadXml(AppDomain.CurrentDomain.BaseDirectory + "XML\\Mail.xml"); if
(ds.Tables.Count > ...
分类:
Web程序 时间:
2014-05-18 02:19:31
阅读次数:
408
//
获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory//
获取模块的完整路径。System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName//
获取和设置当前目录(该进...
分类:
移动开发 时间:
2014-05-08 23:49:48
阅读次数:
364