|
Posted by Adrienne Boswell on 04/13/07 14:09
Gazing into my crystal ball I observed "ojorus" <ojorus@hotmail.com>
writing in news:461f681b$1@news.broadpark.no:
> Hi! Thanks for your reply.
> However, this is not what I am looking for. A "hidden" field would not
> be possible to write anything into.
>
>
Please don't top post.
If the user cannot see the "hidden" input element, how is anything going
to get written to it?
If you want to pass information from one form to another, you can do so
using the hidden input element, eg.
<input type="hidden" name="blah" value="<%=request.form("blah")%>"> or
<input type="hidden" name="blah" value="<%=request.querystring
("blah")%>">
If you want the user to see the element, but not be able to write to it,
you can use the readonly attribute (although it seems I read somewhere
that doesn't always work). eg:
<input type="text" name="blah" value="Something you don't want changed"
readonly>
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Navigation:
[Reply to this message]
|