or

Stream theStream = FileUpload1.PostedFile.InputStream; int size = Convert.ToInt32(FileUpload1.PostedFile.InputStream.Length + 1); Byte[] rtf = new Byte[FileUpload1.PostedFile.InputStream.Length+1]; theStream.Read(rtf, 0, size); string s = System.Text.Encoding.Default.GetString(rtf); RadEditor1.LoadRtfContent(s);<telerik:RadGrid ID="grdProfileIntakes" AutoGenerateColumns="False" ItemStyle-VerticalAlign="Top" OnNeedDataSource="grdProfileIntakes_NeedDataSource" ShowStatusBar="true" GridLines="None" OnItemDataBound="grdProfileIntakes_ItemDataBound" OnDetailTableDataBind="grdProfileIntakes_DetailDataBind" runat="server" ><MasterTableView
DataKeyNames="IntakeId" CommandItemDisplay="TopAndBottom" NoMasterRecordsText="No Intakes to display."
Height="100%" Width="100%" ItemStyle-VerticalAlign="Top"> <RowIndicatorColumn Visible="True" /> <CommandItemSettings AddNewRecordText="Add new intake" />
<ExpandCollapseColumn Visible="True" /> <Columns> <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="btnEditIntake" /> <telerik:GridBoundColumn DataField="IntakeTitle"
HeaderText="Title" SortExpression="IntakeTitle" UniqueName="IntakeTitle" /> <telerik:GridBoundColumn DataField="StudyPeriodLabel" HeaderText="Study Period" SortExpression="StudyPeriodLabel" UniqueName="StudyPeriodLabel" /> </Columns>
<EditFormSettings EditFormType="Template"> <EditColumn UniqueName="IntakeEditColumn"></EditColumn> <FormTemplate> <table border="0" cellpadding="2" width="500px"> <tr> <td width="50px"><asp:Label ID="Label5" AssociatedControlID="IntakeTitle" runat="server">Title:</asp:Label></td> <td width="200px"> <asp:TextBox ID="IntakeTitle" Width="150px"
Text='<%# Bind("IntakeTitle") %>' TextMode="SingleLine" runat="server" MaxLength="20" /> </td>
</tr>
<tr> <td width="50"><asp:Label ID="Label1" AssociatedControlID="StudyPeriodID" runat="server">Study Period:</asp:Label></td> <td width="200px"> <asp:RadioButtonList ID="StudyPeriodID" DataSourceID="odsStudyPeriods" SelectedValue='<%# GetRadioValue(Eval("StudyPeriodId")) %>' DataTextField="StudyPeriodLabel" DataValueField="StudyPeriodID" AppendDataBoundItems="true" runat="server" /> </td>
</tr>
</table>
<asp:Button ID="btnIntakeUpdate" CommandName="Update" CommandArgument="Intake" Text="Save" runat="server" CausesValidation="true"/> <asp:Button ID="btnIntakeCancel" CommandName="Cancel" Text="Cancel" runat="server" CausesValidation="false"/> <asp:Button ID="btnIntakeDelete" CommandName="Delete" CommandArgument="Intake" OnClientClick="if(!confirm('Delete this Intake from the profile?')) return false;" Text="Delete" runat="server" CausesValidation="false"/> </FormTemplate> </EditFormSettings></MasterTableView></telerik:RadGrid>protected void grdProfileIntakes_ItemDataBound(object sender, GridItemEventArgs e) { if ((e.Item is GridEditFormItem) && (!e.Item.IsInEditMode)) { GridEditFormItem editFormItem = (GridEditFormItem)e.Item; RadioButtonList studyPeriod = (RadioButtonList)editFormItem.FindControl("StudyPeriodID"); if (studyPeriod != null) { studyPeriod.ClearSelection(); } } }<asp:RadioButtonList ID="StudyPeriodID" DataSourceID="odsStudyPeriods" SelectedValue='<%# GetRadioValue(Eval("StudyPeriodId")) %>' DataTextField="StudyPeriodLabel" DataValueField="StudyPeriodID" AppendDataBoundItems="true" runat="server" />protected int GetRadioValue(object val) { if (val.ToString() == string.Empty) { return -1; } else { return CommonFunctions.IntOr0(val.ToString()); } }Message: Access is denied.
URI: http://www.xn--q3cpb7aq3d2cub8b.com/tonman/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3ath%3a1f68db6e-ab92-4c56-8744-13e09bf43565%3aea597d4b%3ab25378d2
this problem is not get with ie8 compatiblility mode and any browser such as firefox chrome safari etc..
Web.config is from generate tool.
my Telerik Web UI Version : Telerik.Web.UI, Version=2009.3.1314.35,
public partial class Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { RadToolTip1.Show(); } }<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> <Scripts> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> </Scripts> </telerik:RadScriptManager> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> </telerik:RadAjaxManager> <div> <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="200px" Width="300px"> <telerik:RadToolTip ID="RadToolTip1" runat="server" Height="310px" Skin="Forest" Width="417px" Position="Center"> Example ToolTip </telerik:RadToolTip> <br /> <br /> <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /> </telerik:RadAjaxPanel> </div> </form> </body> </html>

<%@ Page Language="C#" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> </telerik:RadScriptManager> <telerik:RadMenu ID="RadMenu1" Runat="server" Flow="Vertical" Width="100px"> <Items> <telerik:RadMenuItem runat="server" Text="This is the first very long menu item" style="white-space:normal"></telerik:RadMenuItem> <telerik:RadMenuItem runat="server" Text="This is the second very long menu item" style="white-space:normal"></telerik:RadMenuItem> <telerik:RadMenuItem runat="server" Text="This is the third very long menu item" style="white-space:normal"></telerik:RadMenuItem> </Items> </telerik:RadMenu> </div> </form> </body> </html><style type="text/css"> /* Sets height of 22px to text boxes */ .RadForm.rfdTextbox input[type="text"], .RadForm.rfdTextbox input[type="password"] { padding-top: 1px !important; padding-bottom: 1px !important; }</style>