摘要: SQLDMO(SQL Distributed Management Objects,SQL分布式管理对象)封装了Microsoft SQL Server数据库中的对象。SQLDMO是Microsoft SQL Server中企业管理器所使用的应用程序接口,所以它可以执行很多功能,其中当然也包括对数据库的备份和恢复。 SQLDMO由Microsoft SQL Server自带的SQLDMO.dll... 阅读全文
posted @ 2009-05-27 14:14 iDEAAM 阅读(215) 评论(0) 推荐(0) 编辑
摘要: using System.Diagnostics; namespace WebApplication1 { public partial class WebForm3 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Process pro = new Process(); pro.Start... 阅读全文
posted @ 2009-05-27 14:03 iDEAAM 阅读(365) 评论(1) 推荐(0) 编辑
摘要: 1. 启动外部程序,不等待其退出。2. 启动外部程序,等待其退出。3. 启动外部程序,无限等待其退出。4. 启动外部程序,通过事件监视其退出。//usingSystem.Diagnostics;privatestringappName="calc.exe";///<summary>///1. 启动外部程序,不等待其退出///</summary>privatevoidbutt... 阅读全文
posted @ 2009-05-27 14:01 iDEAAM 阅读(3736) 评论(0) 推荐(0) 编辑