1
我使用GridView空數據源進行批量插入,我將如何預先填充實例列A的下拉框的值?到目前爲止,我有以下,但它不工作預填充gridview空數據源
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
TextBox tb = (TextBox)e.Row.FindControl("YourTextBoxID");
if(tb != null)
{
tb.Text = DropDownList1.SelectedItem.Text;
}
}
}
什麼樣_empty_ DataSorce的?如果它是空的,RowDataBound.DatRow如何被解僱? –
templatefields與文本框....我使用錯誤的事件? – EM90210