Simple vbscript,html page loading into access.
Input pg posting to Confirm pg, then sending to access.

when using;

<textarea name="name" tabindex="15">
</textarea>

as an input renders tab spaces automatically.

I took out <Div> tags, and tried nowrap, and tried
reformatting data before sending to dbase (CStr, Trim),
with no answer to alleviate this problem.

Any suggestions????

Re: <textarea> bug???? by Curt_C

Curt_C
Tue Jul 22 23:15:49 CDT 2003

I'm confused.... are you trying to KEEP or REMOVE the tab spaces?


--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
http://www.Darkfalz.com
---------------------------------------------------------
..Offering free scripts & code snippits for everyone...
---------------------------------------------------------

"Matt" <mbell11@yahoo.com> wrote in message
news:068401c350cf$0be22c10$a501280a@phx.gbl...
> Simple vbscript,html page loading into access.
> Input pg posting to Confirm pg, then sending to access.
>
> when using;
>
> <textarea name="name" tabindex="15">
> </textarea>
>
> as an input renders tab spaces automatically.
>
> I took out <Div> tags, and tried nowrap, and tried
> reformatting data before sending to dbase (CStr, Trim),
> with no answer to alleviate this problem.
>
> Any suggestions????
>
>



Re: <textarea> bug???? by Aaron

Aaron
Tue Jul 22 23:11:52 CDT 2003

I don't understand. Your tabs are disappearing? When? When you later
present the data in HTML? That's because a tab in a textarea is not HTML...
and HTML doesn't recognize a tab. You will need to replace for presentation
in a web page, something along the lines of:

txt = rs("txt")
response.write replace(txt, chr(9), "&nbsp;&nbsp;&nbsp;&nbsp;")




"Matt" <mbell11@yahoo.com> wrote in message
news:068401c350cf$0be22c10$a501280a@phx.gbl...
> Simple vbscript,html page loading into access.
> Input pg posting to Confirm pg, then sending to access.
>
> when using;
>
> <textarea name="name" tabindex="15">
> </textarea>
>
> as an input renders tab spaces automatically.
>
> I took out <Div> tags, and tried nowrap, and tried
> reformatting data before sending to dbase (CStr, Trim),
> with no answer to alleviate this problem.
>
> Any suggestions????
>
>



Re: <textarea> bug???? by matt

matt
Wed Jul 23 09:15:44 CDT 2003

The tabs are automatically in textarea when I try to enter
data into it. Also each time I display the textarea more
tabs are automatically entered into it. The dbase shows
square blocks - 2 before and 2 after the data, whether I
have the field as text or memo.

I am trying to rid the textarea of the tabs, or whatever
the squareblocks are.

>-----Original Message-----
>I don't understand. Your tabs are disappearing? When?
When you later
>present the data in HTML? That's because a tab in a
textarea is not HTML...
>and HTML doesn't recognize a tab. You will need to
replace for presentation
>in a web page, something along the lines of:
>
>txt = rs("txt")
>response.write replace(txt, chr(9), " ")
>
>
>
>
>"Matt" <mbell11@yahoo.com> wrote in message
>news:068401c350cf$0be22c10$a501280a@phx.gbl...
>> Simple vbscript,html page loading into access.
>> Input pg posting to Confirm pg, then sending to access.
>>
>> when using;
>>
>> <textarea name="name" tabindex="15">
>>

Re: <textarea> bug???? by matt

matt
Wed Jul 23 09:16:42 CDT 2003

Remove.

The tabs are automatically in textarea when I try to enter
data into it. Also each time I display the textarea more
tabs are automatically entered into it. The dbase shows
square blocks - 2 before and 2 after the data, whether I
have the field as text or memo.

I am trying to rid the textarea of the tabs, or whatever
the squareblocks are.



>-----Original Message-----
>I'm confused.... are you trying to KEEP or REMOVE the tab
spaces?
>
>
>--
>----------------------------------------------------------
>Curt Christianson (Software_AT_Darkfalz.Com)
>Owner/Lead Designer, DF-Software
>http://www.Darkfalz.com
>---------------------------------------------------------
>...Offering free scripts & code snippits for everyone...
>---------------------------------------------------------
>
>"Matt" <mbell11@yahoo.com> wrote in message
>news:068401c350cf$0be22c10$a501280a@phx.gbl...
>> Simple vbscript,html page loading into access.
>> Input pg posting to Confirm pg, then sending to access.
>>
>> when using;
>>
>> <textarea name="name" tabindex="15">
>>

Re: <textarea> bug???? by matt

matt
Wed Jul 23 10:00:30 CDT 2003

All fixed - thanks for help.

<textarea>
</textarea>

does not work - picking up Cr

<textarea></textarea> does


>-----Original Message-----
>I don't understand. Your tabs are disappearing? When?
When you later
>present the data in HTML? That's because a tab in a
textarea is not HTML...
>and HTML doesn't recognize a tab. You will need to
replace for presentation
>in a web page, something along the lines of:
>
>txt = rs("txt")
>response.write replace(txt, chr(9), " ")
>
>
>
>
>"Matt" <mbell11@yahoo.com> wrote in message
>news:068401c350cf$0be22c10$a501280a@phx.gbl...
>> Simple vbscript,html page loading into access.
>> Input pg posting to Confirm pg, then sending to access.
>>
>> when using;
>>
>> <textarea name="name" tabindex="15">
>>