2010年1月13日
摘要: <script> function qqq() {for(var a=1;a<document.getElementById("Table1").rows.length;a++){ var cc=document.getElementById("Table1").rows[a].cells[1].innerText; alert(cc);}}</script> 阅读全文
posted @ 2010-01-13 16:36 D.Henry 阅读(195) 评论(0) 推荐(0) 编辑
摘要: foreach (RepeaterItem item in dltShiguliebie.Items) { string shiguleibie = ""; int siwangrenshu = 0; foreach (Control ctl in item.Controls) { if (ctl is HtmlInputText) { if (((HtmlInputText)ctl).Value... 阅读全文
posted @ 2010-01-13 15:50 D.Henry 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 1. javaScript函数中执行C#代码中的函数:方法一:1、首先建立一个按钮,在后台将调用或处理的内容写入button1_click中; 2、在前台写一个js函数,内容为document.getElementById("button1").click(); 3、在前台或后台调用js函数,激发click事件,等于访问后台c#函数;方法二:1、函数声明为public 后台代码(把public改... 阅读全文
posted @ 2010-01-13 14:52 D.Henry 阅读(328) 评论(0) 推荐(0) 编辑