Ask a Question related to ASP, Design and Development.
-
Gonzosez #1
links question
When i put a link on a page it is underlined.
I was on a site there the link became underlined when you moused over it.
How is this done?
Thanks
Gonzosez Guest
-
newbie question links and output
I'm creating a page for work where I have a list of the 50 states, and when one state is clicked, a pop-up comes up where it says, "Hello Arkansas,... -
code question--links
I went to a site today which had some links which were very annoying because the little hand didn't come up when you mouse over them, so you had no... -
Question on targeting links in MX
I have created a menu with MX that basically has buttons that link to html files. The files all open in a certain frame called mainFrame. Here is... -
Simple question about targeting links.
I am setting up a movie to use as a menu on a website. There is one page that has link targets on it, eg: #past. I have buttons in the movie to... -
?Hard links, Soft links, & Aliases--Explain
Hi All, Could some knowledgeable UNIX type please explain the differences between hard links, soft links, and traditional Mac aliases. Responses... -
Aaron Bertrand - MVP #2
Re: links question
Client-side style sheets. See a CSS or HTML newsgroup.
"Gonzosez" <tbyam@hinklemfgNS.com> wrote in message
news:uoiaIQ0PDHA.304@tk2msftngp13.phx.gbl...> When i put a link on a page it is underlined.
> I was on a site there the link became underlined when you moused over it.
> How is this done?
> Thanks
>
>
Aaron Bertrand - MVP Guest
-
Gonzosez #3
Re: links question
Thannks
"Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
news:OGnoaR0PDHA.2424@tk2msftngp13.phx.gbl...it.> Client-side style sheets. See a CSS or HTML newsgroup.
>
>
>
> "Gonzosez" <tbyam@hinklemfgNS.com> wrote in message
> news:uoiaIQ0PDHA.304@tk2msftngp13.phx.gbl...> > When i put a link on a page it is underlined.
> > I was on a site there the link became underlined when you moused over>> > How is this done?
> > Thanks
> >
> >
>
Gonzosez Guest
-
fusor #4
Links Question
I'm a little new to CF. Is there a way to keep a main page open, but call
another page into it? When you use links tags (<a href>), it takes you to a
whole new page. So, in other words; Is there a way to keep one page open, and
instead of the traditional links references, call another page into the open
page so that I can display its contents, but still keep the main pages
contents. Thanks in advance...... Tom
fusor Guest
-
~Angela, TMM #5
Re: Links Question
Hello fusor,
If I understand your question correctly, it sounds like you're looking to
change your content but use only one file to display other files within it.
You'd need to do some sort of conditional logic to determine what should
show to the user. In the case of a hyperlink you could go with a URL
parameter. For example, the user visits default.cfm. They click a link that
takes them to default.cfm?id=2. Your code would check for the ID and then
determine what value 2 should display.
Try the code below (save the file as fusor.cfm)
<cfparam name="URL.id" default="0">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Fusor</title>
</head>
<body>
<p><a href="fusor.cfm?id=1">Are you fusor?</a> | <a href="fusor.cfm">Not
fusor?</a></p>
<p><cfif URL.id EQ "1">
Hello Fusor.
<cfelse>
Hey, you're not Fusor!
</cfif></p>
</body>
Now in your case, instead of "Hello Fusor" and "Hey you're not Fusor", you'd
use <cfinclude>s to include the proper file.
There's quite a few ways to approach this situation, the above is only one
of them. Your mileage may vary ;-)
Hope that helps!
~Angela
--
Angela C. Buraglia, Founder:
~FAQs, Tutorials & Resources~ [url]http://www.DreamweaverFAQ.com[/url]
~My Extensions~ [url]http://www.dwfaq.com/go.asp?ID=AngelaX10[/url]
DWfaq Support Newsgroup: [url]news://support.dwfaq.com/support[/url]
Co-Author with Joseph Lowery, Dreamweaver MX 2004 Killer Tips:
[url]http://www.dwkillertips.com[/url]
Extension Developer for Cartweaver 2:
[url]http://www.cartweaver.com/features/extensionsuite/[/url]
Remove the CAPS in my E-mail to reply off list.
"fusor" <webforumsuser@macromedia.com> wrote in message
news:d0a55r$gol$1@forums.macromedia.com...> I'm a little new to CF. Is there a way to keep a main page open, but call
> another page into it? When you use links tags (<a href>), it takes you to
> a
> whole new page. So, in other words; Is there a way to keep one page open,
> and
> instead of the traditional links references, call another page into the
> open
> page so that I can display its contents, but still keep the main pages
> contents. Thanks in advance...... Tom
>
~Angela, TMM Guest
-
fusor #6
Re: Links Question
Thank you so much, Angela!!
You are the greatest.
You're answer solved solved it.
I am forever in your debt :)
Tom
fusor Guest
-
~Angela, TMM #7
Re: Links Question
Glad I could help Tom.
~Angela
"fusor" <webforumsuser@macromedia.com> wrote in message
news:d0kfct$dme$1@forums.macromedia.com...> Thank you so much, Angela!!
>
> You are the greatest.
>
> You're answer solved solved it.
>
> I am forever in your debt :)
>
> Tom
~Angela, TMM Guest



Reply With Quote

