Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default passing URL

    Sorry for the double post

    Hi everyone still trying to solve this URL pass
    im getting an error on the result page

    Its something to do with the output tag but i cant work it out.
    Any help would be most appreciated



    Result Page

    <cfparam name="FORM.?emaleDoctor" default="1">
    <cfparam name="PageNum_Bresult" default="1">
    <cfquery name="Bresult" datasource="simple">
    SELECT Hospital_ID, ???????????
    FROM information
    WHERE ?emaleDoctor LIKE '%#FORM.?emaleDoctor#%'</cfquery>


    <cfoutput query="urlpass">
    <a
    href=http://mail.yahoo.com/config/login?/"../showhosptep.cfm?hospital_id=#urlpas
    s.hospital_id#">#bresult.englishname#</a>
    </cfoutput>

    MArk



    Show page

    <cfquery datasource="simple" name="urlpass">
    SELECT ???????????, ????????????
    FROM information
    WHERE ID=#url.Hospital_ID#
    </cfquery>

    <cfoutput query="urlpass">
    <p> #???????????#, #????????????#</p>


    quiero mas Guest

  2. Similar Questions and Discussions

    1. Passing a Value from Asp.net
      i m making a application in whihc user login on ASP page and a one more ASP page opened with differnet frames and one frame i want to run the chat...
    2. passing RichText to a WS
      Hi, does anyone have any guidence on how I should be passing some richtext from a windows form client to a WS? Passing the value of the...
    3. Passing a value to VB6
      Hi, I am trying to pass a value from an ASP script to a VB application running on the server. The only way I have got this to work is by using a...
    4. Passing value back to SWF
      I have a swf file that I have created with a appropriate loadvarnum() function. I have created a $statusmsg dynamic text field. When I execute my...
    5. HELP! Passing from database to asp page allowing user input then passing to another database.
      My big problem is I'm a newbie working with someone else's code.(See code below) What I want to do is for the records that have a purchase order...
  3. #2

    Default Re: passing URL

    Your query is named Bresult and you're cfoutput refers to a query named urlpass.

    Does your error message say words to the effect of "urlpass does not exist"?
    Dan Bracuk 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