correct syntax for memo field on website form

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default correct syntax for memo field on website form

    Hi,

    I'm creating a website based on one of those awful generator WSYWYG editors,
    A site in ASP and VBscript,
    Now i've created a page to post feed back to a table in my database, I
    created a Textarea for users to provide comments, but then when it came to
    defining what kind of field it is, all i am offered is , text, number,
    checkbox etc.. but not a memo field.
    If I select text, which i did, then filling out some form data in my
    "comments" field, just returned a "true" when i tested and checked my DB.

    So what do hand coders use? what is the correct syntax to call a textarea on
    a webpage form, that updates a memo field in a database.

    Please help me

    Thanks

    Raphael


    Raphael Gluck Guest

  2. Similar Questions and Discussions

    1. ASP - setting form field to insert memo
      Hi all. I am using DW's Insert Record behavior in an effort to create a form to insert a record into a MS Access database. Everything works fine -...
    2. Detecting MEMO field
      Hi all, i'd like to know if there is some way to detect whether a field is of type MEMO (i'm using MS Access) so to behave accordingly placing a...
    3. Memo Field vs. OLE Obj
      > is there any appreciable difference between using a field If it's just TEXT, use Memo (or better yet, store the RTF file in the file system). ...
    4. Help!! I can't figure out the correct syntax
      In an ASP web page I am trying to calculate a value in seconds from two date and times. Can anyone help me find the correct syntax to make this...
    5. Memo field behavior
      Hello, In one application I can hit ctrl enter and get a new paragraph and in the second application I cannot. Both are memo fields. The only...
  3. #2

    Default Re: correct syntax for memo field on website form

    I'm not sure where it is that you need to define this, but you'd just do:

    <textarea name="whatever"></textarea>

    And then on the page that processes it, just treat it like any other text
    form field.

    Request.Form("whatever")

    Ray at work

    "Raphael Gluck" <iwish i could tell you @alas blame the spammers> wrote in
    message news:%23wEKd5KbDHA.1204@TK2MSFTNGP12.phx.gbl...
    > Hi,
    >
    > I'm creating a website based on one of those awful generator WSYWYG
    editors,
    > A site in ASP and VBscript,
    > Now i've created a page to post feed back to a table in my database, I
    > created a Textarea for users to provide comments, but then when it came to
    > defining what kind of field it is, all i am offered is , text, number,
    > checkbox etc.. but not a memo field.
    > If I select text, which i did, then filling out some form data in my
    > "comments" field, just returned a "true" when i tested and checked my DB.
    >
    > So what do hand coders use? what is the correct syntax to call a textarea
    on
    > a webpage form, that updates a memo field in a database.
    >
    > Please help me
    >
    > Thanks
    >
    > Raphael
    >
    >

    Ray at Guest

  4. #3

    Default Re: correct syntax for memo field on website form

    Hi Again, Ray
    That is what i did initially, trying to get away with a text field, but it
    didnt help.
    Is your original code
    Request.Form("whatever")

    still valid? can i somehow put that somewhere?

    That says a lot about people who use WSYWYG like me, and perhaps also about
    the people who create this kind of software, and how they market it.

    Anyways, soon i'm done with this little project and i intent to work through
    a course on asp.net, throughly

    Raphael


    Raphael Gluck Guest

  5. #4

    Default Re: correct syntax for memo field on website form

    It appears that you could add it to the MM_fieldsStr line using the same
    pattern that is currently being used, and you'd then have to do the same
    thing for the columns. Look at the patterns in those lines and just follow
    suit.

    Ray at work

    "Raphael Gluck" <iwish i could tell you @alas blame the spammers> wrote in
    message news:OvWLYwLbDHA.2336@TK2MSFTNGP09.phx.gbl...
    > Hi Again, Ray
    > That is what i did initially, trying to get away with a text field, but it
    > didnt help.
    > Is your original code
    > Request.Form("whatever")
    >
    > still valid? can i somehow put that somewhere?
    >
    > That says a lot about people who use WSYWYG like me, and perhaps also
    about
    > the people who create this kind of software, and how they market it.
    >
    > Anyways, soon i'm done with this little project and i intent to work
    through
    > a course on asp.net, throughly
    >
    > Raphael
    >
    >

    Ray at 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