摘要:
代码如下:View Code 1 create table userOURealation(2 userid int not null,3 nodeid varchar(20) not null,4 primary key(userid,nodeid)5 )6 go 阅读全文
摘要:
主要代码:View Code 1 public void SendMail() 2 { 3 string MailTo;//发送的邮件地址 4 string Subject;//发送邮件题目 5 //从数据库获得用户邮箱地址 6 DataSet ds = GetUserMail(UserID); 7 MailTo = ds.Tables[0].Rows[0][0].ToString(); 8 9 //读... 阅读全文
摘要:
View Code 1 #region 导出按钮 2 /// <summary> 3 /// 导出按钮 4 /// </summary> 5 /// <param name="sender"></param> 6 /// <param name="e"></param> 7 protected void btnExport_Click(object sender, EventArgs e) 8 { 9 try10 {11 DataTable dt = new DataTable(); 阅读全文