Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - This page contains both secure and nonsecure items

 
Thread Tools Search this Thread
Old 04-20-2006, 09:31 AM   #1
Default 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






Mantorok
  Reply With Quote
Old 04-20-2006, 01:03 PM   #2
Karl Seguin [MVP]
 
Posts: n/a
Default Re: This page contains both secure and nonsecure items
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(HtmlTextWriter writer)
{
Page.ClientScript.RegisterStartupScript(typeof(Pag e),
"MenuHttpsWorkaround", Menu1.ClientID +
"_Data.iframeUrl='https://myserver/someblankpage.htm';", true);
base.Render(writer);
}
</script>

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



"Mantorok" <> wrote in message
news:e27gr8$n40$...
> 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
>
>
>
>





Karl Seguin [MVP]
  Reply With Quote
Old 04-21-2006, 10:42 AM   #3
Mantorok
 
Posts: n/a
Default Re: This page contains both secure and nonsecure items
Thanks very much!!

Kev

"Karl Seguin [MVP]" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME
net> wrote in message news:...
> 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(HtmlTextWriter writer)
> {
> Page.ClientScript.RegisterStartupScript(typeof(Pag e),
> "MenuHttpsWorkaround", Menu1.ClientID +
> "_Data.iframeUrl='https://myserver/someblankpage.htm';", true);
> base.Render(writer);
> }
> </script>
>
> --
> http://www.openmymind.net/
>
>
>
> "Mantorok" <> wrote in message
> news:e27gr8$n40$...
>> 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
>>
>>
>>
>>

>
>





Mantorok
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46