or
<telerik:RadWindow ID="RadWindowDialog" runat="server" Title="Test" DestroyOnClose="false" VisibleTitlebar="false" ReloadOnShow="true" ShowContentDuringLoad="false" OnClientClose="OnClientClose" Width="525px" Height="575px" Modal="true"> </telerik:RadWindow>function ShowEditForm(id, btn, act) { var oWnd = $find("<%=RadWindowDialog.ClientID%>"); oWnd.setUrl("Contact.aspx?Contact=" + id + "&Button=" + btn + "&Act=" + act); oWnd.show(); return false; } function OnClientClose(args) { var ajaxManager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>"); var arg = args.argument if (arg) { ajaxManager.ajaxRequest("Rebind"); } else { } }Line: 6Error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.Details: Error parsing near ' <label><font size='.<telerik:RadWindow runat="server" ID="rwPPRTQuestion" Modal="true" KeepInScreenBounds="true" Width="250px" VisibleTitlebar="false" Behaviors="None" InitialBehaviors="None" VisibleStatusbar="false" > <ContentTemplate> <div id="frontpagepop"> <label><asp:Literal runat="server" ID="litRTInfo" Text='<%# InfoChooseRT %>'></asp:Literal></label> <br /> <label><asp:Literal runat="server" ID="litRTQuestion" Text='<%# QuestionChooseRT %>'></asp:Literal></label> <asp:RadioButtonList runat="server" ID="rblRTYesNo" RepeatDirection="Horizontal"> <asp:ListItem Text="<%$ Resources: EPiServer, content.booking.common.yes %>" Value="1"></asp:ListItem> <asp:ListItem Text="<%$ Resources: EPiServer, content.booking.common.no %>" Value="0" Selected="True"></asp:ListItem> </asp:RadioButtonList> <div class="buttons" runat="server" id="div1"> <div class="buttonpop"> <asp:LinkButton runat="server" ID="LinkButton1" OnClick="lbContinue_Click"><asp:Literal ID="Literal1" runat="server" Text="<%$ Resources: EPiServer, content.booking.continue %>"></asp:Literal> »</asp:LinkButton> </div> </div> </div> </ContentTemplate> </telerik:RadWindow>.RadForm_Office2007.rfdFieldset table.rfdRoundedWrapper_fieldset legend, .RadForm_Office2007.rfdFieldset fieldset.rfdFieldset legend, .RadForm_Office2007.rfdFieldset table.rfdRoundedWrapper_fieldset fieldset, .RadForm_Office2007.rfdFieldset fieldset.rfdFieldset { font-size:25px;}<telerik:RadMenu ID="RadMenu1" runat="server" OnItemClick="RadMenu1_ItemClick"><br>
</telerik:RadMenu>protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { displayLinks(); } } private void displayLinks()<br> { RadMenuItem menuItem = new RadMenuItem(); menuItem.SelectedCssClass = "rmSelected"; menuItem.Text = "Test"; menuItem.NavigateUrl = "www.google.com"; RadMenu1.Items.Add(menuItem); }