File Download - Security Warning

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default File Download - Security Warning

    I have a webpage that when you click on a link it opens an executable file.
    However, you first get a prompt regarding a "File Download - Security Warning"
    - Do you want to run or save this file? Is there some code I can use that
    automatically tells it to run and not display this message? Also, once I click
    "Run" it then gives a "Internet Explorer - Security Warning" - The publisher
    could not be verified. Are you sure you want to run this software? Is there
    some code I can use that automatically tells it to run and not display this
    message?

    Brittany2 Guest

  2. Similar Questions and Discussions

    1. getting security warning dont know way
      here is example i created a blank page with welome on it . and im getting a security warning when i preview it message is to help protect your...
    2. windows sp2 security warning in my page
      hi, all These days, I found when I open my test aspx page with some javascript inside, IE shows a security warning says to open this page is on a...
    3. WARNING ABOVE POST VIRUS DOWNLOAD
      WARNING ABOVE post virus download -- "If you don't know where you are going, any road will take you there!"
    4. Security Warning
      My client is getting a security warning when he visits a page that has a director animation. It says... Do you want to install and run...
    5. ADO security warning in MDAC version 2.8
      Bill, More details can be found here : ADO 2.8 Security Design Issues and Changes...
  3. #2

    Default Re: File Download - Security Warning

    > I have a webpage that when you click on a link it opens an executable
    file.
    > However, you first get a prompt regarding a "File Download - Security
    Warning"
    > - Do you want to run or save this file? Is there some code I can use that
    > automatically tells it to run and not display this message? Also, once I
    click
    > "Run" it then gives a "Internet Explorer - Security Warning" - The
    publisher
    > could not be verified. Are you sure you want to run this software? Is
    there
    > some code I can use that automatically tells it to run and not display
    this
    > message?
    Unless you're in a controlled environment (intranet) it's not a good ideea
    to automaticaly execute the file (think about a page that positions your
    mouse with javascript over a link and the same javascript activates the
    link - would you want to have that file executed)? If you're on an intranet
    then use an activeX control to download and execute the file automaticaly.

    --
    <mack />


    Neculai Macarie Guest

  4. #3

    Default Re: File Download - Security Warning

    Unless you're in a controlled environment (intranet) it's not a good ideea
    to automaticaly execute the file (think about a page that positions your
    mouse with javascript over a link and the same javascript activates the
    link - would you want to have that file executed)? If you're on an intranet
    then use an activeX control to download and execute the file automaticaly.

    --
    <mack />

    I am on the intranet. Do you have any specific coding on using the activeX
    control?

    Brittany2 Guest

  5. #4

    Default Re: File Download - Security Warning

    > I am on the intranet. Do you have any specific coding on using the
    activeX
    > control?
    I don't have an example, but the basic ideea would be:
    - with javascript pass the URL of the executable to the activeX control;
    - activex: download file, execute.

    --
    <mack />


    Neculai Macarie Guest

Posting Permissions

  • You may not post new threads
  • You may 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