上一页 1 ··· 20 21 22 23 24
摘要: 1,JavaScript设置链接不可用: ScriptManager.RegisterStartupScript(Page, typeof(Page), "", "", false); 阅读全文
posted @ 2008-07-03 08:59 Shapley 阅读(220) 评论(0) 推荐(0) 编辑
摘要: function CheckUpload() { var val = $("ctl00_ContentPlaceHolder1_FileUpload1").value; if(val == "") { alert("请选择上传附件。");return false; } ... 阅读全文
posted @ 2008-06-13 08:57 Shapley 阅读(1105) 评论(2) 推荐(0) 编辑
摘要: 1.符号“/”指程序运行所在根目录,即IIs所在目录。 如果iis所在目录为:d:\programs 解决方案为d:\programs\d 网站路径为:d:\programs\d\web\ 符号“/”代表的是:d:\programs,不管你的网站前面有多少级,都应该作为一个整体。 2.符号“~/”,则是指网站所在根目录。即d:\programs\d\web。 测试代码如下: protected ... 阅读全文
posted @ 2008-06-12 16:21 Shapley 阅读(1437) 评论(5) 推荐(0) 编辑
摘要: 以前老是忘记怎么 查找radiobuttonlist中项的个数,现在写下来,以防再次忘记。 var items = document.getElementsByName("ctl00$ContentPlaceHolder1$RadioButtonList1"); for (var i = 0; i < items.length; i++) { if (items[i].check... 阅读全文
posted @ 2008-06-12 14:54 Shapley 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 一、DataBinder.Eval的基本格式 在绑定数据时经常会用到这个句程序: 或者 今天又学到一种,而且微软也说这种方法的效率要比以上两种高。 ... 阅读全文
posted @ 2008-05-29 09:41 Shapley 阅读(210) 评论(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 阅读(141) 评论(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 阅读(531) 评论(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 阅读(271) 评论(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 阅读(476) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24