我想訪問控件並用它們的值更新數據庫。使用下面的代碼說明:如何在編輯模式下在GridView中查找控件()?
void grdList_UpdateCommand(object source, GridCommandEventArgs e)
{
string str = ((RadTextBox)e.Item.FindControl("txtLookupItemValue")).Text;
}
我訪問控制txtLookupItemValue,但它包含用戶已經進入前編輯的內容,而不是實際值。
我已經測試值:
然後將其添加到在ASPX GridView控件。它只包含before-edit-value。 – 2010-06-28 10:46:55