Invalid postback or callback argument error?

后端 未结 3 1236
逝去的感伤
逝去的感伤 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:13

    If you want to modify generated controls from client side, you have to disable eventvalidation or register all possible values with RegisterForEventValidation. It's well explained here. It's because the data sent to the client and received after by the server differs.

    edit:also responded here.

提交回复
热议问题