2011年4月19日
摘要: 后台代码: //foreach (DataListItem item in DataList1.Items) //{ // if (item.FindControl("lbl") != null) // { // TextBox1.Text = ((Label)item.FindControl("lbl")).Text; // } // else // { // Response.Write("w ca"); // } //} foreach (RepeaterItem item in Repeater1.Items) { if (i 阅读全文
posted @ 2011-04-19 23:33 Robbery 阅读(213) 评论(0) 推荐(0) 编辑