2014年12月8日 星期一

Repeater在後端時,可用foreach來取得所有Repeater裡的物件

foreach (RepeaterItem RPItem in this.Repeater.Items) { ((TextBox)RPItem.FindControl("TextBox")).Text="aa"; }

DropDownList動態給值

在後端處理中,要動態給予DropDownList的值時,需注意以下幾點 1.需先行清除已選定的值: DropDownList.ClearSelection(); 2.找出Value或Text值給予設定 DropDownList.Items.FindByValue(要設定的值).Selected = true; DropDownList.Items.FindByText(要設定的值).Selected = true;