Invalid postback or callback argument error?

后端 未结 3 1232
逝去的感伤
逝去的感伤 2021-01-13 09:41

I have two dropdownlists and I am filling one based on the other using javascript. In my javascript code I am calling for a webservice and with the results returned I fill t

3条回答
  •  春和景丽
    2021-01-13 10:11

    My problem was solved when cancel event at end of grid event at server side.

    protected void grdEducation_RowEditing(object sender, GridViewEditEventArgs e)
    {
      // do your processing ... 
    
      // at end     
      e.Cancel = true;
    }
    

提交回复
热议问题