Save As?
-
Hello, How to save IE page? I would like to save exactly as IE's Save As menu command (it saves images,...). Thank you.
Right click -> View Source -> File -> Save As...
-
Right click -> View Source -> File -> Save As...
Nope, I think he mean that he want to this programatically, not manually ;( << >>
-
Nope, I think he mean that he want to this programatically, not manually ;( << >>
Hi you can use :
execCommand(sCommand [, bUserInterface] [, vValue]); **sCommand**: SaveAs **bUserInterface**: [Optional]. This command displays a dialogue box if the bUserInterface argument of execCommand is set to true or omitted. It does not display a dialogue box if the argument is set to false or null and the vValue parameter is present (even if it's null). **vValue** [Optional]: String that specifies the path and file name of the file to which to save the Web page. When the path contains more than one folder name, separate the folder names with two backward slashes (\\).
Use it like Iman Ghasrfakhri