Date:  02/05/2002 07:58:51 PM Msg ID:  000327
From:  FoxWeb Support Thread:  000231
Subject:  Re: HTML questions...
It sounds to me like you should display the values as regular text and also include them as hidden variables:

<form....>
<input type="hidden" name="fname" value="<%=fname%>">
<input type="hidden" name="fname" value="<%=lname%>">
First Name=<%=fname%><br>
Last Name=<%=lname%><br>
<input type="submit" value="Continue">
</form>

FoxWeb Support Team
support@foxweb.com

Sent by Alan Harris-Reid on 02/03/2002 08:59:55 AM:
Stephen, thanks for the reply.

>My question is why would you disable ALL the Form objects on a page? What's the point of having a form?<

Good question - in fact there is one non-disabled control on the form, a submit button taking the user back to the previous page.  Otherwise the data displayed on the form must be readonly, hence the need for all other controls to be disabled.  I was looking for an easy way to disable the whole page, then just enable the submit button.

Regards,
Alan