温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:在线订票系统源码(毕业设计)
当前文件路径:TicketOnline/nootbook.aspx.cs

1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Collections; 5
using System.Web; 6
using System.Web.Security; 7
using System.Web.UI; 8
using System.Web.UI.WebControls; 9
using System.Web.UI.WebControls.WebParts; 10
using System.Web.UI.HtmlControls; 11
using System.Diagnostics; 12
public partial class nootbook : System.Web.UI.Page 13
{ 14
private System.Diagnostics.Process process; 15
protected void Page_Load(object sender, EventArgs e) 16
{ 17
18
19
} 20
21
22
23
protected void LinkButton1_Click(object sender, EventArgs e) 24
{ 25
process = new Process(); 26
process.StartInfo.FileName = "notepad.exe"; 27
this.process.Start(); 28
29
} 30
} 31





}
}