HTML <Href Link inside a form (HTML text box)

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

  1. #1

    Default HTML <Href Link inside a form (HTML text box)

    Hello, I am using a standard HTML Form to gather information from users and
    one of the elements within the form is a text box that users will paste links
    into, along with their plain text. The link could be anywhere within the text
    box with text before and after it, etc. I take the text and put in into an
    access db memo field. When I retreive the text, the text is truncated after
    the '<' . Do I need to escape the <Href before I store the full text ?? I am
    looking for a way to maintain the links as links once I query and reDisplay the
    memo field content. I would rather not parse and test each chr in the field
    before I right it to the db. Also, I don't have the option of adding an
    additional URL field to the form. I see many examples on the web, including
    CFMX based forums, but don't knmow what solution is used for managing
    substrings within plain text. atm I am playing around with 'replace', but there
    is probably a simpler and better way.

    Lingodude Guest

  2. Similar Questions and Discussions

    1. HTML link inside a <CFMAIL> email
      Hello all, I have writen a basic help desk application. When a logged call is closed i use <CFMAIL> to send a confirmation that there log has been...
    2. html link in dyn. text field
      I have a Flash movie with a dynamic textfield in it. loaded are php and html texts by use of the (Flash)menu. I would like two things: A. a...
    3. binding from cfgrid in a flash form to an html link
      I need to pass the Id from the flash form cfgrid to a url variable in a link. Is this possible with the new flash forms? <a...
    4. format dynamic text box with html : color & link
      Hi! I have a dynamic textbox with the instance name : q1feedback. It is set up to accept html and I want to set a hyperlink AND a color in the...
    5. 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...
  3. #2

    Default Re: HTML <Href Link inside a form (HTML text box)

    You could replace < and > with < and > respectively before you send the text to the database.


    BKBK 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