R – postback not raised problem

asp.netdynamiceventspostbackuser-controls

I have next situation:

  • I load dynamic controls during on init, and I do correct initialization.
  • I add dynamic control before postback
  • I don't add anything later in load
  • control is loaded and diplayed correctly
  • I press postback and nothing happens

Why I really don't know.. I tried everything. So control IS properly initialised. __EVENTTARGET shows the same path as the UniqueId of linkbutton that is firing it. All controls in tree have viewstate=true. So, I really don't know what this is not working.

Any idea? I am desperate.. I don't know.. if anyone could suggest me, if not solution, then just things I should check would be very good.

Best Answer

Is this problem just for this page or do you have other pages on the same site with the same problem?

I am assuming that you have the same problem on all pages.

It could be relate do javascript not being allowed. You could try to add the site to local intranet security are, then refresh the page.

Related Topic