I have a text area on a web page that I want to be read only, however, I have
a form on the page as well that customers will need to enter information on.
How do I protect the text area without protecting the whole page?

Re: How do I make a text area read only by Tom

Tom
Fri Nov 10 11:28:10 CST 2006

What do you mean *read only*? What are you trying to accomplish?
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
"Chad" <Chad@discussions.microsoft.com> wrote in message
news:6A2569AC-F761-42D0-BE71-B4B70F01C7EB@microsoft.com...
|I have a text area on a web page that I want to be read only, however, I
have
| a form on the page as well that customers will need to enter information
on.
| How do I protect the text area without protecting the whole page?



Re: How do I make a text area read only by Steve

Steve
Fri Nov 10 11:29:47 CST 2006

The only way is to make an image of the text area and use the image in the page.


--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm


"Chad" <Chad@discussions.microsoft.com> wrote in message news:6A2569AC-F761-42D0-BE71-B4B70F01C7EB@microsoft.com...
>I have a text area on a web page that I want to be read only, however, I have
> a form on the page as well that customers will need to enter information on.
> How do I protect the text area without protecting the whole page?



Re: How do I make a text area read only by David

David
Fri Nov 10 12:26:10 CST 2006

Switch to code view and add readonly to the tag. Ex:

<textarea rows="2" name="S1" cols="20" readonly></textarea>

"Chad" <Chad@discussions.microsoft.com> wrote in message
news:6A2569AC-F761-42D0-BE71-B4B70F01C7EB@microsoft.com...
>I have a text area on a web page that I want to be read only, however, I
>have
> a form on the page as well that customers will need to enter information
> on.
> How do I protect the text area without protecting the whole page?