Ask a Question related to ASP Database, Design and Development.
-
Raphael Gluck #1
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
-
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 -... -
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... -
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). ... -
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... -
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... -
Ray at #2
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...editors,> Hi,
>
> I'm creating a website based on one of those awful generator WSYWYGon> 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> a webpage form, that updates a memo field in a database.
>
> Please help me
>
> Thanks
>
> Raphael
>
>
Ray at Guest
-
Raphael Gluck #3
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
-
Ray at #4
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...about> 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 alsothrough> 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> a course on asp.net, throughly
>
> Raphael
>
>
Ray at Guest



Reply With Quote

