Ask a Question related to ASP, Design and Development.
-
Matt #1
<textarea> bug????
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????
Matt Guest
-
TextArea
I am making a simple blog, and was wondering if anyone had any suggestions on making a wysiwyg editor. I want to try and make it as much cross... -
Printjob for TextArea
Below the code snipped :Q: it works fine and print the textarea. But it prints only the visible Textarea and ignores the rest of the text(that... -
textArea formatting
I am using a php html form with data which is loaded from a mysql database. Three of the fields are textareas. The data loads into these fields... -
textarea value
I am trying to collect the value of an HTML textarea. The problem I am having is that I only can get he first line in the textarea. When a user... -
Removing carriage returns from <textarea></textarea> input
Hiya, I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to... -
Aaron Bertrand [MVP] #2
Re: <textarea> bug????
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">
> </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????
>
>
Aaron Bertrand [MVP] Guest
-
Curt_C [MVP] #3
Re: <textarea> bug????
I'm confused.... are you trying to KEEP or REMOVE the tab spaces?
--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
[url]http://www.Darkfalz.com[/url]
---------------------------------------------------------
...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????
>
>
Curt_C [MVP] Guest
-
matt #4
Re: <textarea> bug????
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.
When you later>-----Original Message-----
>I don't understand. Your tabs are disappearing? When?textarea is not HTML...>present the data in HTML? That's because a tab in areplace for presentation>and HTML doesn't recognize a tab. You will need to>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">
>>matt Guest
-
matt #5
Re: <textarea> bug????
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.
spaces?>-----Original Message-----
>I'm confused.... are you trying to KEEP or REMOVE the tab>
>
>--
>----------------------------------------------------------
>Curt Christianson (Software_AT_Darkfalz.Com)
>Owner/Lead Designer, DF-Software
>[url]http://www.Darkfalz.com[/url]
>---------------------------------------------------------
>...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">
>>matt Guest
-
matt #6
Re: <textarea> bug????
All fixed - thanks for help.
<textarea>
</textarea>
does not work - picking up Cr
<textarea></textarea> does
When you later>-----Original Message-----
>I don't understand. Your tabs are disappearing? When?textarea is not HTML...>present the data in HTML? That's because a tab in areplace for presentation>and HTML doesn't recognize a tab. You will need to>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">
>>matt Guest



Reply With Quote

