07 2007 档案

摘要:方式1: foreach (Control c in this.Repeater1.Controls) { HtmlInputCheckBox check = (HtmlInputCheckBox)c.FindControl("chkSelect"); if( check != null ) { check.Checked = true; } } 方式2: for (int i=0;i<this.... 阅读全文
posted @ 2007-07-05 12:22 tohen 阅读(572) 评论(0) 推荐(1)
摘要:一,JavaScript传值,主要用到opener.document…… 例如:Trans_aa.htm,Trans_bb.htm 二..Net传值方式主要有以下几种1.url传值.如: CheckPwd.aspx?user=uservalue&pwd=pwdvalue2.Session传值 如:Session("role")="Administrator"3.Vi... 阅读全文
posted @ 2007-07-02 09:29 tohen 阅读(2024) 评论(0) 推荐(0)