Windows explorer from Iframe - Problem.
-
Hi all, I am using to display a path in the browser using the script(this is quite simple can copy the below line to .html should work fine). <iframe id="DialogContent" src="c:\" style="background-color:transparent;" scrolling="auto" frameborder="0" allowtransparency="true" width="100%" height="100%"> Every thing is fine except that I don't want to display the left menu in the explorer window. How can I achieve this any property to set with it. Thanks in advance. -Ram.
-
Hi all, I am using to display a path in the browser using the script(this is quite simple can copy the below line to .html should work fine). <iframe id="DialogContent" src="c:\" style="background-color:transparent;" scrolling="auto" frameborder="0" allowtransparency="true" width="100%" height="100%"> Every thing is fine except that I don't want to display the left menu in the explorer window. How can I achieve this any property to set with it. Thanks in advance. -Ram.
ram1974 wrote:
Every thing is fine except that I don't want to display the left menu in the explorer window.
Everything is not fine. First off, most browsers won't do anything useful with such a URL at all - since "C:\" isn't actually a proper URL (
file://c:/
might work). Second, the behavior of IE - which will display the filesystem browser - in this area isn't really in your control, as it would otherwise introduce a fairly unpleasant security hole. I'm not sure what you're trying to accomplish with this, but i suggest you stop and think about it a bit. -
ram1974 wrote:
Every thing is fine except that I don't want to display the left menu in the explorer window.
Everything is not fine. First off, most browsers won't do anything useful with such a URL at all - since "C:\" isn't actually a proper URL (
file://c:/
might work). Second, the behavior of IE - which will display the filesystem browser - in this area isn't really in your control, as it would otherwise introduce a fairly unpleasant security hole. I'm not sure what you're trying to accomplish with this, but i suggest you stop and think about it a bit.