PLEASE HELP PROJECT DUE IN TOMMORROW

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

  1. #1

    Default PLEASE HELP PROJECT DUE IN TOMMORROW

    Hi, I am really stuck and have a project to hand in tommorow, I created a web
    site in dmx and linked it to the following access database
    ID, SEE
    where see is a hyperlink in a access db coloum to a page of a word document.
    However when I search for a cretain ID the link in the see coloum is not
    clickable as a hyperlink. Does any one know where I am going wrong?

    krazykris Guest

  2. Similar Questions and Discussions

    1. new project [615]
      Or you can use Querix Hydra Compiler, which not only provides you with a windows front end (Phoenix) it also allows you to add in your own ActiveX...
    2. Project Help
      Hi I am fairly new to Director but would to get started, I am using Version 8 and would like suggestions on a project to start on. Any...
    3. project using ASP
      Hi All, You may be interested in my Head Injuries Project, which I doing as part of my MSc project at the University of Gloucestershire and would...
    4. Large PHP Project... Need Project Manager
      Hey, I've got a nice CMS (in quite stable 2.0 form) that I need a Project Manager who can just deal with some bugs/answer questions for the next...
    5. Project Seven Down?
      The Project 7 Web Site and forums are "not available" all day. Does anyone know what is happening with them? Thanks...Mike
  3. #2

    Default Re: PLEASE HELP PROJECT DUE IN TOMMORROW

    What I can say is that, either the link was not saved or your coding is wrong.
    Can you paste your code so i can look at it??

    Are you doing the following??

    <cfquery datasource="whatever" name="listings">
    select ID, SEE
    From yourdb
    </cfquery>

    <cfoutput query="listings">
    <cfif SEE neq "">
    <a href="#URLENCODEDFORMAT(SEE)#">#ID#</a>
    <cfelse>
    #ID#
    </cfif>
    </cfoutput>

    Try it.

    primalx2003 Guest

  4. #3

    Default Re: PLEASE HELP PROJECT DUE IN TOMMORROW

    krazykris,

    primalx is right, you are probably outputting the hyperlink and just
    outputting it wont make it "clickable" you need to code it as a link like
    primalx said, except if you want it to look like a link you need to replace
    the ID to SEE (you should really try naming you columns differently ID is
    pretty vague try something like linkID and SEE is a common word with no
    correlation to you database try pageLink or something...

    <cfquery datasource="whatever" name="listings">
    select ID, SEE
    From yourdb
    </cfquery>

    <cfoutput query="listings">
    <cfif SEE neq "">
    <a href="#URLENCODEDFORMAT(SEE)#">#ID#</a>
    <cfelse>
    <font color=white style="background-color: 3E3E3E;">#SEE#</font ft>
    </cfif>
    </cfoutput>

    elDonrico 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