or
<telerik:RadBinaryImage runat="server" Width="740px" Height="600px" ResizeMode="Fit" ID="RadImageOrganizationChart" AlternateText="OrganizationChart" ImageUrl="Images/Chart.jpg"/>/// <summary>/// Loads the image before uploading it/// </summary>/// <param name="sender"></param>/// <param name="e"></param>protected void AsyncUpload1_FileUploaded(object sender, FileUploadedEventArgs e){ RadImageOrganizationChart.Width = Unit.Pixel(800); RadImageOrganizationChart.Height = Unit.Pixel(600); using (Stream stream = e.File.InputStream) { byte[] imageData = new byte[stream.Length]; stream.Read(imageData, 0, (int)stream.Length); RadImageOrganizationChart.DataValue = imageData; } if (AsyncUpload1.UploadedFiles.Count > 0) { UploadedFile file = AsyncUpload1.UploadedFiles[0]; string fullPath = Server.MapPath("~/Images"); string fileName = "Chart.jpg"; file.SaveAs(Path.Combine(fullPath, fileName)); }}No "NOFRAMES" Element Found!;
in order to trace this issue i gone through the view source of this particular page but i did not find those iframes in my view source. after a lot of struggle i came to know that they are coming for RadMenu (from my code i removed entire RadMenu after that i checked, then i observed the above issue does not reported, so i concluded that the above issue is because of Radmenu)
along with the above one he had reported one more issue with respect to tables if i click on the tables option in the WAT tool then i am getting the following message (no th element found) which i am adding an attachment.
so, how can we fix it.
Thanks,
Burepalli V S Rao.