or

Hi,
On my page, if the user checks a Checkbox, a RadGrid will programmatically be added to the page containing results from the database and a textbox for each row for them to input information.
They then click the button (outside the grid on the main page) to postback the information from the grid.
I tried to use .FindControl("myRadGrid") to get the grid on the click event but it is not there, due to the page life cycle. So I've tried to re-add the grid on Page_Init instead, but I can't do this because I would need to rebind the grid and would therefore lose the users inputs.
Can you help please?
<system.web> <httpRuntime maxRequestLength="102400" executionTimeout="3600" /> </system.web>
and theThe progress bar will appear to upload but upon completion I just see the<system.webserver> <security > <requestFiltering> <requestLimits maxAllowedContentLength="1024000000" /> </requestFiltering> </security> </system.webserver>
file select and submit button again instead of the controls upload control
being hidden which is what is supposed to happen.
-- ItemDataBound Event
ToolTipManager1.TargetControls.Add(btnbooking.ClientID, btnbooking.Text, true);ToolTipManager2.TargetControls.Add(btnReference.ClientID, btnReference.Text, true);protected void OnAjaxUpdateBooking(object sender, ToolTipUpdateEventArgs args) { Control ctrl = Page.LoadControl("~/ControlLibrary/Booking.ascx"); args.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl); AppWeb.ControlLibrary.BookingDetails booking = (AppWeb.ControlLibrary.BookingDetails)ctrl; WTButton btnClose = (WTButton)ctrl.FindControl("btnclose"); if (btnClose != null) btnClose.OnClientClicked = "CloseTooltipManager"; } protected void OnAjaxUpdateReference(object sender, ToolTipUpdateEventArgs args) { Control ctrl = Page.LoadControl("~/ControlLibrary/Reference.ascx"); args.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl); AppWeb.ControlLibrary.DualDetails dual = (AppWeb.ControlLibrary.DualDetails)ctrl; dual.PageType = ApptType.EXPORT_DROPOFF; dual.lGateApptAssoc_Id = Convert.ToInt64(args.Value); WTButton btnClose = (WTButton)ctrl.FindControl("btnclose"); if (btnClose != null) btnClose.OnClientClicked = "CloseTooltipManager"; }-- Javascript methodfunction CloseTooltipManager(sender, args) { var controller = Telerik.Web.UI.RadToolTipController.getInstance(); var tooltip = controller.get_activeToolTip(); if (tooltip) { tooltip.hide(); } }