Ok, I am still trying to figure this thing out.
I follow this
example , and this is what i have been doing before, but i guesss what complicates our situation is that I load same userControl 3 times into different pageviews that are dynamicly created together with tabs.
but inside of the user control, i have ajax update scenario, where when item in dropbox is selected the fields are filled with data.
What is happening is I AJAXIFY the link button and the PANNEL with content inside of the loaded user control
the actual ajaxmanager and scriptmanager are on the parent page
| Dim rajaxMan As Telerik.Web.UI.RadAjaxManager = DirectCast(Me.Page.FindControl("RadAjaxManager1"), |
| Telerik.Web.UI.RadAjaxManager) |
| rajaxMan.AjaxSettings.AddAjaxSetting(Me.linkPickADriver, |
| Me.DriverInfoPannel, Nothing) |
When the linkbutton is clicked what is happening is the parent page is reloading all the controls, tabs and pageviews all over again.
So when the linkbuttion is presses
rmpServiceContacts_PageViewItemCreated event is fired 3 times 1 for each pageview, than the Load Event of the UserControl is fired 3 times, and than the actual click event is fired, making code inside of it useless, as the control was completly reloaded.
Any suggestions?
I am trying to have ajaxified partial postback inside of the loaded usercontrol, i dont want control to be reloaded.