CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2008
    Posts
    142

    How do i stop security Information message popup?

    Hi ,

    I am getting secure/non-secure items alert message when i open a popup window. so, how do i stop this message ?

    Thanks in advance...

  2. #2

    Re: How do i stop security Information message popup?

    Your popup contains mixed http / https requests. Make it all of one type - otherwise you have to modify the browser settings.

  3. #3
    Join Date
    Jun 2008
    Posts
    142

    Re: How do i stop security Information message popup?

    this is getting only in IE and how do i change without changing browser settings.

  4. #4
    Join Date
    May 2002
    Posts
    10,943

    Re: How do i stop security Information message popup?

    As mmetzger said, you need to make sure that all contents loaded are either HTTP or HTTPS. If they are mixed, then you will get that message every time.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  5. #5
    Join Date
    Jun 2008
    Posts
    142

    Re: How do i stop security Information message popup?

    how to find out where exactly getting that message in webpage?

  6. #6
    Join Date
    May 2002
    Posts
    10,943

    Re: How do i stop security Information message popup?

    How else??? ....By looking through your code.

    Check to see to where your srcs and stylesheets point. The easiest way would be to download Safari and check the Activity Browser for all the loaded items.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured