I have a button that triggers an update to a database, which then should be triggering the repeater inside an update panel to update its datasource and rebind, then update the panel. Unfortunately, after hitting the button, the database transaction occurs,
but the panel doesn't update. Refreshing the page manually does update it, of course.
One the same page, within the repeater mentioned above, is a linkbutton for an item, which triggers another method that does the same as above. Again the update panel does not fire.
Any suggestions would be appreciated!
First "Form" Containing The Button That Triggers Update Method
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Add New Relationship</h4>
</div>
<div class="modal-body& ...
Go to the complete details ...