Ask a Question related to Coldfusion Database Access, Design and Development.
-
krazykris #1
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
-
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... -
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... -
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... -
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... -
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 -
primalx2003 #2
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
-
elDonrico #3
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



Reply With Quote

