Creating dynamic text link from text

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Creating dynamic text link from text

    Hi

    I'm trying to create a text link "read more..." (rather than a long and ugly
    text link )on my web page. The link is dynamic from the database and listed
    through repeat region. Can anyone please tell me what I put in the link field.

    The recordset is called rsNews and the link is called link (ie rsNews.link).

    Cheers
    Julie

    ukjooles Guest

  2. Similar Questions and Discussions

    1. creating a text link changes font size
      I am the admin on my own website, using contribute 3.11...when trying to create a link, once I have highlighed my text and published my link, the...
    2. How do I link from inside a dynamic text box?
      I have a dynamic web site set up using Flash MX 2004 Pro. I am trying to load some dunamic html into a textfiled that will be able to call...
    3. HTML link in dynamic text?
      I can't seem to get a URL link in my dynamic imported text to work... Is it not possible? I checked the Flash Help documents and they offered very...
    4. Creating alternate text on a url link??????
      Hello I know how to add alternate text to an image (tool tip window), but what i want to achieve is alternate text over a normal text based url...
    5. link in dynamic text?
      Hi guys. Is there any way to put a link in dynamic text? I have text with sroll bar (created with the Flash UI Component) and need to put there...
  3. #2

    Default Re: Creating dynamic text link from text

    I guess we should assume that the text in the database field is eithr an
    absolute or a relative URL? If so, then this is how I do it. First, you bind
    the URL field to the page. It will display as {rs_recordset.url} on the page
    and <%=(rs_recordset.Fields.Item('url').Value%> in the code. Change the code to
    read: <a href='<%=(rs_recordset.Fields.Item('url').Value%>' >Read More</a> and
    you will see the Read More link reflected in the document. HTH Cheers Chuck

    chuckomalley Guest

  4. #3

    Default Re: Creating dynamic text link from text

    Thanks Chuck, that worked great, cheers
    ukjooles 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