上一页 1 ··· 22 23 24 25 26
摘要: 一、DataBinder.Eval的基本格式 在绑定数据时经常会用到这个句程序: 或者 今天又学到一种,而且微软也说这种方法的效率要比以上两种高。 ... 阅读全文
posted @ 2008-05-29 09:41 Shapley 阅读(217) 评论(0) 推荐(0)
摘要: 废话不说,具体代码如下: System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.To.Add(this.txtAddress.Text); message.Subject = "This is the Subject line"; ... 阅读全文
posted @ 2008-03-18 09:59 Shapley 阅读(152) 评论(0) 推荐(0)
摘要: 1.运行脚本 ScriptManager.RegisterStartupScript(this.lblNewPage,this.GetType(),"aa","opener.focus();window.close();",true); Page.RegisterStartupScript(); ClientScript.RegisterStartupScript(this.GetType(), ... 阅读全文
posted @ 2008-03-14 10:49 Shapley 阅读(547) 评论(0) 推荐(0)
摘要: 一,直接循环: function CheckDate() { var grid = document.getElementById("DataGrid1"); for (var i = 2;i < grid.rows.length +2; i++) { if (document.getElementById('DataGrid1__ctl'+i+'_CheckBox... 阅读全文
posted @ 2008-01-22 12:58 Shapley 阅读(277) 评论(0) 推荐(0)
摘要: private void btnOut_Click(object sender, System.EventArgs e) { DataSet ds = new DataSet(); this.sqlDataAdapter1.Fill(ds); ds.WriteXml(Server.MapPath("\test.xml"),XmlWriteMode.IgnoreSchema); ... 阅读全文
posted @ 2007-12-11 21:58 Shapley 阅读(486) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26