We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Rich edit control ASP.NET HTTPS causes security warning.

Hello,

I am using Richedit control on ASP.NET page via https connection
And every time page is loaded I have a messge
"This page contains both secure and nonsecure items..."
I have no links to http websites or I have no images on http src tag,
How can I get rid of this messge?

Syncfusion version 5.2.0.30

Regards,
Alexander


3 Replies

SE Sergey February 28, 2008 01:41 PM UTC

protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);

FixIFrames(Controls);
}

void FixIFrames(ControlCollection controls)
{
foreach (Control c in controls)
{
HtmlIFrameElement iframe = c as HtmlIFrameElement;

if (iframe != null)
iframe.Src = "Empty.html";

FixIFrames(c.Controls);
}
}




AD Administrator Syncfusion Team March 4, 2008 01:24 PM UTC

Hi Alexander,

Rich edit control ASP.NET HTTPS causes security warning:

I am able to reproduce this issue in IE6. The issue mentioned here is suspected to be a defect and we have sent this to our development team for more analysis. We will update you once we get back from our development team.

Please let me know if you have any other concerns.

Regards,
Melba




AD Administrator Syncfusion Team March 12, 2008 07:41 AM UTC

Hi Alexander,

The issue of 'Security alert occurs while using RichTextBox control in HTTPS environment' has been fixed. The fix for this defect is available in our Development build v6.2.0.13.

Please refer to the below link for the weekly development build updates.
http://www.syncfusion.com/downloads/product/build.aspx

Please let me know if you have any questions.

Regards,
Manopriya


Loader.
Live Chat Icon For mobile
Up arrow icon