Results 1 to 4 of 4

Thread: repopulate are <textarea> field

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2001
    Posts
    22
    gidday can anyone help i am having trouble giving memory to a textarea field of my form
    the following works fine with text fields:
    value="<%=xyz%>"
    but when tried for the textarea nothing appears
    have tried other syntaxes but nothing works

    thanks in advance
    mick

  2. #2
    New Member
    Join Date
    Feb 2001
    Posts
    12
    mornin.

    are you doin this:
    <textarea name="hello" value=<%= xyz %>"></textarea>

    ?
    If so, don't
    do this:
    <textarea name="hello"><%= xyz%></textarea>

    dont put the value tag in, and have the <%= xyz %> in the bit between the open textarea tag and the close tag.

    Hope that helps.

  3. #3
    Addicted Member
    Join Date
    Sep 2000
    Posts
    219
    Try this:

    <textarea name="hello"><%Response.Write xyz%></textarea>

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Feb 2001
    Posts
    22
    Thanks guys got in working now
    cheers
    mick

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width