473,804 Members | 2,215 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

This page contains both secure and nonsecure items

Hi all

This has been driving me nuts for months now, if I access my site from IE
https://db.cornwall.gov.uk/PlanningApplications and then hover over one of
the 2-level menus it comes up with the message:

"This page contains both secure and nonsecure items. Do you want to display
the nonsecure items?"

I've confirmed that there are "no" nonsecure items on this site, it works ok
from Firefox but not IE.

Can someone have a look at the site and see if they get the same problem -
it's been driving me crazy - and why does it only come up when hovering over
the menu item?

Thanks all
Kev


Apr 20 '06 #1
2 6116
You'll find all the answers you need at:
http://blogs.msdn.com/jorman/archive...06/526087.aspx

it's because the popup is loaded into a non-secure iframe. A solution is
provided at the link above, but for the sake of posterity:

<script runat="server">
protected override void Render(HtmlText Writer writer)
{
Page.ClientScri pt.RegisterStar tupScript(typeo f(Page),
"MenuHttpsWorka round", Menu1.ClientID +
"_Data.iframeUr l='https://myserver/someblankpage.h tm';", true);
base.Render(wri ter);
}
</script>

--
http://www.openmymind.net/

"Mantorok" <ma******@manto rok.com> wrote in message
news:e2******** **@newsfeed.th. ifl.net...
Hi all

This has been driving me nuts for months now, if I access my site from IE
https://db.cornwall.gov.uk/PlanningApplications and then hover over one of
the 2-level menus it comes up with the message:

"This page contains both secure and nonsecure items. Do you want to
display
the nonsecure items?"

I've confirmed that there are "no" nonsecure items on this site, it works
ok
from Firefox but not IE.

Can someone have a look at the site and see if they get the same problem -
it's been driving me crazy - and why does it only come up when hovering
over
the menu item?

Thanks all
Kev

Apr 20 '06 #2
Thanks very much!!

Kev

"Karl Seguin [MVP]" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME
net> wrote in message news:Om******** ******@TK2MSFTN GP05.phx.gbl...
You'll find all the answers you need at:
http://blogs.msdn.com/jorman/archive...06/526087.aspx

it's because the popup is loaded into a non-secure iframe. A solution is
provided at the link above, but for the sake of posterity:

<script runat="server">
protected override void Render(HtmlText Writer writer)
{
Page.ClientScri pt.RegisterStar tupScript(typeo f(Page),
"MenuHttpsWorka round", Menu1.ClientID +
"_Data.iframeUr l='https://myserver/someblankpage.h tm';", true);
base.Render(wri ter);
}
</script>

--
http://www.openmymind.net/

"Mantorok" <ma******@manto rok.com> wrote in message
news:e2******** **@newsfeed.th. ifl.net...
Hi all

This has been driving me nuts for months now, if I access my site from IE
https://db.cornwall.gov.uk/PlanningApplications and then hover over one
of
the 2-level menus it comes up with the message:

"This page contains both secure and nonsecure items. Do you want to
display
the nonsecure items?"

I've confirmed that there are "no" nonsecure items on this site, it works
ok
from Firefox but not IE.

Can someone have a look at the site and see if they get the same
problem -
it's been driving me crazy - and why does it only come up when hovering
over
the menu item?

Thanks all
Kev


Apr 21 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1167
by: Mike | last post by:
I have noticed that the id of my session object changes when I switch from a non-secure to a secure connection. What I'm trying to do: I have a cookie that is built on the non-secure side of things. What I need to do is to switch to a secure connection and then later on while still in that secure connection delete the cookie that was created on the non- secure side.
1
1149
by: Brent Burkart | last post by:
How do I resolve this message popup. I have a simple asp.net application with nothing out of the ordinary. Any help is appreciated
2
1086
by: Brent Burkart | last post by:
When you navigate my website, the following message pops up: This page contains both secure and nonsecure items. Do you want to display the nonsecure items? What can I put in my code or html to prevent this from happening? Thanks for your help. Brent
5
7562
by: A.M | last post by:
Hi, My ASP.NET application uses SSL on IIS6. up on visiting some pages, IE 6 shows this security alert: This page contains both secure and non secure items. Do you want to display non-secure items? Regardless I answer no (or yes), everything works fine.
2
1924
by: marc.gibian | last post by:
I am modifying an existing ASP.NET application to make it SSL compatible. I have already searched the codebase and eliminated all hardcoded "http" instances, replacing them with a method call that returns the appropriate ("http" or "https") value in a given context. I have also modified all iframe instances to ensure they always have a valid src. But, when I run the application, I still encounter the following Security dialog in IE: ...
2
1128
by: rodchar | last post by:
Hey all, I have a blank form with a stylesheet on it. When I goto that form I'm getting the message there are nonsecure items would you like to continue? I've specified <LINK href="https://mysite/cola-2.css" type="text/css" rel="stylesheet"> I think I'm hitting a moving target. First, I get the message about the nonsecure items and if I say no (padlock shows but no stylesheet). If I say
8
2944
by: vandenberc | last post by:
I am trying to setup an html page. I have a button and when you click on it I want it to go to either http:///.../demo.htm or https://..../demo.htm based on whether or not you went through the crypted site or the uncrypted site. I know that I can make a relative address but since the link that I want is not on the same server I can't do that. I just want a script that says if secure document.load "https:// this secure web address"...
3
2087
by: Mantorok | last post by:
Hi all This has been driving me nuts for months now, if I access my site from IE https://db.cornwall.gov.uk/PlanningApplications and then hover over one of the 2-level menus it comes up with the message: "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?" I've confirmed that there are "no" nonsecure items on this site, it works ok
1
2541
mikek12004
by: mikek12004 | last post by:
I have recently put https on a page with certificate and everything but when I type https://.. in IE I get the message "this page contains both secure and nonsecure items" why? What is the nonsecure componets? I do not call anything outside the web directory of my domain and when I open to windows I choose 'yes' in one and no in the other (which then displays the 'lock') the 2 views are exactly the same! (thought that whatever made the problem...
0
9714
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9594
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10351
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9174
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7638
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5534
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4311
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3834
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3002
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.