Ask a Question related to ASP, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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,...
    2. 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...
    3. 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...
    4. 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...
    5. ?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...
  3. #2

    Default 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

  4. #3

    Default Re: links question

    Thannks
    "Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
    news:OGnoaR0PDHA.2424@tk2msftngp13.phx.gbl...
    > 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
    > >
    > >
    >
    >

    Gonzosez Guest

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

  8. #7

    Default 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

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