Accessing Cold Fusion application variable usingJavascript

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Accessing Cold Fusion application variable usingJavascript

    I have a javascript menu that I would like to access a coldfusion application variable "Application.changeordername".

    Any ideas on how to do this?
    mdemahy Guest

  2. Similar Questions and Discussions

    1. Cold Fusion/Flex Application Wizard crippled in TrialVersion?
      Hi, I am using the 60 Day trial version of Flex Builder 3/Eclipse. I wanted to try out the much vaunted Cold Fusion/Flex Application Wizard,...
    2. Cold Fusion Application Server service will not start
      We are running ColdFusion version 4.51 (service pack 2) on a Windows 2000 server, with IIS 5. We recently started using Crystal Reports 11.5...
    3. Cold Fusion Application Server
      Hello all, I'm having the weirdest issue with our CF server. They do not run. However when I start Cold Fusion Application Server, I cannot login...
    4. pass javascript variable to cold fusion
      anyone know if there's a way to pass a Javascript variable to Cold fusion? Or a good article that shows how to do this?
    5. Cold Fusion Application Server Terminated unexpectedly
      The Cold Fusion Application Server service terminated unexpectedly. It has done this 3 time(s). The following corrective action will be taken in 0...
  3. #2

    Default Re: Accessing Cold Fusion application variable usingJavascript

    On the page that contains the javascript code, I'm assuming it's a coldfusion
    page, do the following (in the javascript code block):

    var changeOrderName = <cfoutput>#Application.changeordername#</cfoutput>;

    Kronin555 Guest

  4. #3

    Default Re: Accessing Cold Fusion application variable usingJavascript

    That worked great thanks.
    mdemahy 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