Element <VARIABLE> is undefined in URL

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Element <VARIABLE> is undefined in URL

    Hi All,

    I can't seem to remember how to stop the error "Element DOCTYPE is undefined
    in URL". I am using the following code but I can't solve this problem. I want
    to be able to run the cfif when the variable 'doctype=pdf'. When the variable
    is not available I get the error.

    <cfif isDefined(url.docType)>
    <cfif url.docType EQ "pdf">
    <cfdocument format="pdf" pagetype="a4" />
    </cfif>
    </cfif>

    Any help would be appreciated.

    Laverda668 Guest

  2. Similar Questions and Discussions

    1. Element is undefined
      I get the message Form Element TXTSEARCH is undefined with this code: <cfset Session.Description = #Form.txtSearch#> I have a textbox called...
    2. Element DS is undefined in APPLICATION
      I have followed all the advice from a previous thread but now i get a new error link: www.healthhokkaido.com Element DS is undefined in...
    3. Undefined element in form - Please Help
      I keep on getting a message displayed stating that I have an undefined element in a form - I have checked and everything looks OK - did a <cfdump>...
    4. Undefined element in form
      I keep on getting a message - Element STARTTIME_HOUR is undefined in FORM ??? I have checked everything that I can think of and can see...
    5. Element (.....) is undefined in FORM
      I am getting this error message after I submit a form (parts request):Error Occurred While Processing Request Element LIPSEALS4044 is undefined in...
  3. #2

    Default Re: Element <VARIABLE> is undefined in URL

    I found the answer - I needed to change <cfif isDefined(url.docType)> to <cfif isDefined("url.docType")>

    Laverda668 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