or


<li><Telerik:RadAjaxPanel ID="rapHypRegister" runat="server" ><asp:HyperLink ID="hypUtilNavRegister" runat="server" Text="Register" ToolTip="Register" NavigateUrl="~/register.aspx" /></Telerik:RadAjaxPanel></li><telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="rapLogin"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rapLogin" LoadingPanelID="RadAjaxLoadingPanel1" /> <telerik:AjaxUpdatedControl ControlID="rapHypRegister" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>'Now we need to change the register text in the header usercontrol 'Lets find the usercontrol Dim MyControl As Control = Me.Page.Master.Master.FindControl("header1") 'Now we need the update panel from the header usercontrol 'Dim radRegUpdatePanel As RadAjaxPanel = MyControl.FindControl("rapRegister") 'Now we can access the hyperlink Dim hypMyregLink As HyperLink = MyControl.FindControl("hypUtilNavRegister") hypMyregLink.Text = "My Account" hypMyregLink.NavigateUrl = "~/myaccount.aspx"<asp:UpdatePanel ChildrenAsTriggers="true" UpdateMode="Conditional" runat="server"> <ContentTemplate> <telerik:RadGrid ID="rgProducts" runat="server" AutoGenerateColumns="false" Skin="WebBlue" OnItemInserted="rgProducts_ItemInserted" OnInsertCommand="rgProducts_InsertCommand" OnNeedDataSource="rgProducts_NeedDataSource" OnEditCommand="rgProducts_EditCommand"
OnItemUpdated="rgProducts_ItemUpdated"> <MasterTableView CommandItemDisplay="Top" AllowAutomaticInserts="True" EditMode="InPlace"> <Columns> <telerik:GridBoundColumn DataField="ProductId" HeaderText="Id" /> <telerik:GridBoundColumn DataField="ProductName" HeaderText="Name" /> <telerik:GridBoundColumn DataField="BuyerGroup" HeaderText="BuyerGroup" /> <telerik:GridEditCommandColumn EditText="Edit" CancelText="Cancel" HeaderText="" /> </Columns> </MasterTableView> </telerik:RadGrid> </ContentTemplate> </asp:UpdatePanel>protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { rgProducts.DataSource = OrderMoq.Products; } }protected void rgProducts_NeedDataSource(object sender, GridNeedDataSourceEventArgs e) { rgProducts.DataSource = OrderMoq.Products; }The whole is difficult to explain, so I created a small example application. But I can not add to this thread.
Can you refer me, what am I doing wrong?
Greetings Markus