2013-02-04 92 views
0

在Radgrid中,當有人點擊保存按鈕時,如何保持添加新記錄,並檢查數據是否全部格式正確或有效?我想要在添加新記錄後保持打開狀態,因爲我告訴他們數據無效並保留已輸入的值。Radgrid添加新記錄數據檢查

回答

-1

想通了。

protectedvoidrdgdr1_InsertCommand(objectsender, GridCommandEventArgs e) 
{ 
    GridEditableItem editItem = (GridEditableItem)e.Item; 
    TextBox OrderText=(TextBox)editItem["UniqueName"].Controls[0] 

    if(OrderText.Text=="correct") 
    { 

     //insert the data in the database 
    } 
    else 
    { 
     e.Canceled = true; 
    } 
} 
相關問題