ASP.Net button click event not firing

前端 未结 7 494
臣服心动
臣服心动 2021-01-06 11:59

This is perhaps related to this question, but I have slightly more information.

I recently updated an ASP.Net application to .NET 3.5 after coding a few new pieces w

7条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-06 12:37

    It's seem to me, you have issue with Update Panel.

    Define the following properties of Update Panel if you are using more than one update panel and updation of one panel change the data of other update panel.

    For the UpdatePanel

    1. ChildrenAsTriggers = true
    2. EnableViewState = true (if you are using this feature)
    3. UpdateMode = Always

    Use the same properties for other update panel in your same page.

    If you find it useful, please mark it as your answer else let me know....

提交回复
热议问题