This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c#
-
In my existing project I'm getting this pop up message... This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# But its happening few pages only....whats the exact issue...can somebody tell me...is there any coding (asp .net c#) thru this I can solve it..... Internet - tool - options----this method doesnt required.... Thnx in advance.
-
In my existing project I'm getting this pop up message... This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# But its happening few pages only....whats the exact issue...can somebody tell me...is there any coding (asp .net c#) thru this I can solve it..... Internet - tool - options----this method doesnt required.... Thnx in advance.
Mostly it has to do with links in a page. Your page is run in https on the webserver but your link says http. Or you load images in your page with an absolute http path in stead of a relative ~\... path.
-
Mostly it has to do with links in a page. Your page is run in https on the webserver but your link says http. Or you load images in your page with an absolute http path in stead of a relative ~\... path.
Hi digi.. all images path is such as ../image/........so which one will be better....\ ~/image..... or ../image/.... please suggest me asap... thnx
-
Hi digi.. all images path is such as ../image/........so which one will be better....\ ~/image..... or ../image/.... please suggest me asap... thnx
-
thnx.. i have used ../ lets c output....just updating webserver..
-
Mostly it has to do with links in a page. Your page is run in https on the webserver but your link says http. Or you load images in your page with an absolute http path in stead of a relative ~\... path.
I used ../image path for the images....didnt work.... any other suggestion plz. thnx. raj.
-
I used ../image path for the images....didnt work.... any other suggestion plz. thnx. raj.
read http://www.4guysfromrolla.com/webtech/121799-1.shtmlthis article about Server.MapPath() functionality
-
I used ../image path for the images....didnt work.... any other suggestion plz. thnx. raj.
dynamic raj wrote:
any other suggestion plz.
This message is a generic message that means exactly what it says - you are on a secure page (https) but some element of the page is nonsecure (http). This can be anything that is loaded into the page, such as an image (as already suggested), a css file, a script include, an applet etc. If you are having trouble tracking down the offender, try something like fiddler[^] and watch for any http requests when hitting your https page.
-
dynamic raj wrote:
any other suggestion plz.
This message is a generic message that means exactly what it says - you are on a secure page (https) but some element of the page is nonsecure (http). This can be anything that is loaded into the page, such as an image (as already suggested), a css file, a script include, an applet etc. If you are having trouble tracking down the offender, try something like fiddler[^] and watch for any http requests when hitting your https page.
Hi J4.. just I installed fiddler... could you explain little bit more...how to track the exact items... thnx
-
Hi J4.. just I installed fiddler... could you explain little bit more...how to track the exact items... thnx
erm... it's pretty self-explanatory. Whhen you make a request to a page fiddler shows each http request that your browser is issuing. when you hit the https page look for any requests that says http. Thats you're culprit for the "this page contains both secure and nonsecure ....." message.