【发布时间】:2009-06-12 11:16:07
【问题描述】:
如何将日志写入 Windows 日志文件? (Windows XP)
如何(从 Web 服务)找到我的 Web 服务的虚拟目录?
先谢谢了
【问题讨论】:
标签: c# web-services
如何将日志写入 Windows 日志文件? (Windows XP)
如何(从 Web 服务)找到我的 Web 服务的虚拟目录?
先谢谢了
【问题讨论】:
标签: c# web-services
写入事件日志:
System.Diagnostics.EventLog.CreateEventSource(strMyApp, "Application");
EventLog MyEventLog = new EventLog();
MyEventLog.Source = strMyApp;
MyEventLog.WriteEntry(strEvent, EventLogEntryType.Warning);
查找虚拟目录:
http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.mappath.aspx
【讨论】: