Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
phillip6653 #1
ASP & Access
I am trying to take a access database that has a memo field and populate a text
box on my site with the information in access. I know how to do this normaly
but I think the memo field in access is causing the problem. Is there anyway to
have a field in access that can hold more than 255 caractors and be able to
display it dynamicly on my web page. Please help
Terrence McCLeary
phillip6653 Guest
-
Web Service + Anon Access, but getting 401 Access Denied Error
I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous... -
Network File access using anonymous access
I have seen a number of entries related to accessing remote resources (files in my case) that need to reside on a remote server. We must leave our... -
Access 2002 PDFWriter VBA Code w/WinXP does not work like Access 2000
I am trying to print an Access 2002 report (Windows XP OS) as a PDF. I had success with Access 2000 in a Windows 2000 environment, but as soon as I... -
Access Violation when using Visual Interdev to access Oracle
I am running Windows 200 Pro, IIS 5.0 and trying to connect to an Oracle 8.1 database. Prior to applying a security patch to W2k, the ASP... -
Access denied when creating Access application object
In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the... -
hedem #2
Re: ASP & Access
Dear,
Define your field name in access as data type = Memo.
To display the text dynamically you can preformatted the text between the
tag <pre></pre>.
When you enter several lines in the memo field in access, this translates
exactly the same to your asp file.
By the way you can also using the most asp tag codes in your field name
(example <br>, <b>, <font>, etc...)
Kind regards,
hedem
"phillip6653" <webforumsuser@macromedia.com> schreef in bericht
news:dcopa7$hqa$1@forums.macromedia.com...>I am trying to take a access database that has a memo field and populate a
>text
> box on my site with the information in access. I know how to do this
> normaly
> but I think the memo field in access is causing the problem. Is there
> anyway to
> have a field in access that can hold more than 255 caractors and be able
> to
> display it dynamicly on my web page. Please help
>
> Terrence McCLeary
>
hedem Guest
-
Singularity.co.uk #3
Re: ASP & Access
Phillip
There is a problem when displaying information from an Access database Memo
field, in that in your SQL code you have to call the Memo field last or it
wont display.
Brendan
"phillip6653" <webforumsuser@macromedia.com> wrote in message
news:dcopa7$hqa$1@forums.macromedia.com...text> I am trying to take a access database that has a memo field and populate anormaly> box on my site with the information in access. I know how to do thisanyway to> but I think the memo field in access is causing the problem. Is thereto> have a field in access that can hold more than 255 caractors and be able> display it dynamicly on my web page. Please help
>
> Terrence McCLeary
>
Singularity.co.uk Guest
-
phillip6653 #4
Re: ASP & Access
How do you make sure that the memo Sql code is being called last. I don't know alot about the code.
phillip6653 Guest
-
Singularity.co.uk #5
Re: ASP & Access
When your selecting your fields to be included in a recordset, select the
one that is a memo field last.
"phillip6653" <webforumsuser@macromedia.com> wrote in message
news:dcr3jb$6mj$1@forums.macromedia.com...know alot about the code.> How do you make sure that the memo Sql code is being called last. I don't
Singularity.co.uk Guest
-
phillip6653 #6
Re: ASP & Access
Here is the new problem that I found. You can't put a memo field in a multi-line textbox. Do you know the solution to that?
phillip6653 Guest
-
phillip6653 #7
Re: ASP & Access
Thank you for all of your help. I did get it to work if I used the record update form from the insert menu.
Thanks again
phillip6653 Guest
-
hedem #8
Re: ASP & Access
Hello,
You don't need to put the memo field in a multi-line textbox.
Maybe you can try this
<pre><%=(rsMemo.Fields.Item("txtMemo").Value)%></pre>.
or when want it in a box:
<table>
<tr>
<td><pre><%=(rsMemo.Fields.Item("txtMemo").Value)% ></pre></td>
</tr>
</table>
Kind regards
Hedem
"phillip6653" <webforumsuser@macromedia.com> schreef in bericht
news:dct891$ena$1@forums.macromedia.com...> Thank you for all of your help. I did get it to work if I used the record
> update form from the insert menu.
>
> Thanks again
hedem Guest
-
Singularity.co.uk #9
Re: ASP & Access
Phillip
You should have no problem placing text from a memo field into a multi-line
textbox.
Are you getting an error, or is it that the data won't display?
Brendan
"phillip6653" <webforumsuser@macromedia.com> wrote in message
news:dct7hs$dii$1@forums.macromedia.com...multi-line textbox. Do you know the solution to that?> Here is the new problem that I found. You can't put a memo field in a
Singularity.co.uk Guest



Reply With Quote

