How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

Ask a Question related to ASP, Design and Development.

  1. #1

    Default How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

    I use the following to open Excel from IE browser, but I don't get a
    OPEN/SAVE dialog option window. Instead, the Excel opened in the browser
    window. How to get a OPEN/SAVE dialog option window? THanks.

    filesys.createTextFile(application("ApplicationPat h") &
    "repository\repository_" & filenameval & ".csv",true)


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    eddie wang Guest

  2. Similar Questions and Discussions

    1. Is there an open or save Dialog in Flash ?
      Hi all, this may sounds funny, and maybe I missed something in tutorials and searching on the web ... but I can't find anything about a...
    2. Force GetUrl to open dialog box "open or save"
      I'm triyng to link several buttons to several external 3D .step and .igs files. I needed Flash to open dialog box "Open or save", but what hapens...
    3. Open/Save File Dialog
      Is there a way to open the open/save file dialog in flash without useing javascript? I'm trying to develop this for a stand alone distribution and...
    4. Excel open automatically without giving a dialog box option to Open/Save/Cancel using filesys.create
      Excel open automatically without giving a dialog box option to Open/Save/Cancel using filesys.createTextFile. How to pop up the dialog box option...
    5. MX open/save file browser window issues...
      Anybody else found this isuue? Whenever I use DWMX, after about an hour or so, if I go to Save As.. (specifically when using the keyboard shortcut),...
  3. #2

    Default Re: How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

    This is a client-side option that you cannot control from ASP, but you can
    use this trick.

    [url]http://www.aspfaq.com/2161[/url]

    Ray at work

    "eddie wang" <ewang@kmg.com> wrote in message
    news:O2PvoaeiDHA.1368@TK2MSFTNGP12.phx.gbl...
    > I use the following to open Excel from IE browser, but I don't get a
    > OPEN/SAVE dialog option window. Instead, the Excel opened in the browser
    > window. How to get a OPEN/SAVE dialog option window? THanks.
    >
    > filesys.createTextFile(application("ApplicationPat h") &
    > "repository\repository_" & filenameval & ".csv",true)
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Ray at Guest

  4. #3

    Default Re: How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

    Thanks for pointing out this is a client option. How may I setup this
    option on client PC manually? Thanks!


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    eddie wang Guest

  5. #4

    Default Re: How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

    For the xls file type in tools, options, file types from explorer.exe:

    browse in same window = false
    confirm open after download = true

    Ray at work


    "eddie wang" <ewang@kmg.com> wrote in message
    news:OHZQDuAjDHA.2404@TK2MSFTNGP12.phx.gbl...
    > Thanks for pointing out this is a client option. How may I setup this
    > option on client PC manually? Thanks!
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Ray at Guest

  6. #5

    Default Re: How to get a OPEN/SAVE dialog option window when open Excel from IE browser.



    Based on the following code, I think that I use CSV format.
    filesys.createTextFile(application("ApplicationPat h") &
    "repository\repository_" & filenameval & ".csv",true)

    So, I set up in Tools/Folder Options/File Types/CSV and see the
    following are true. Why I
    am still not getting a dialog window to confirm open after download???
    browse in same window = false
    confirm open after download = true



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    eddie wang Guest

  7. #6

    Default Re: How to get a OPEN/SAVE dialog option window when open Excel from IE browser.

    Huh. I get the same thing. I also notice that the options I set for csvs
    don't stick. There is this article, but it's the opposite effect.
    [url]http://support.microsoft.com/?kbid=318761[/url] ?? Not sure. I suppose as a
    work-around you could stream the file back using this.
    [url]http://www.aspfaq.com/2161[/url]

    Ray at work

    "eddie wang" <ewang@kmg.com> wrote in message
    news:O2ncKjCjDHA.2580@TK2MSFTNGP10.phx.gbl...
    >
    >
    > Based on the following code, I think that I use CSV format.
    > filesys.createTextFile(application("ApplicationPat h") &
    > "repository\repository_" & filenameval & ".csv",true)
    >
    > So, I set up in Tools/Folder Options/File Types/CSV and see the
    > following are true. Why I
    > am still not getting a dialog window to confirm open after download???
    > browse in same window = false
    > confirm open after download = true
    >
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Ray at Guest

Posting Permissions

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

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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139