DBR form set to Read Only..?

  • Thread starter Thread starter Frank Smith
  • Start date Start date
F

Frank Smith

I have a DB Update form that works fine.
The fields in the form have a format of <%=FP_FieldVal(fp_rs,"phone")%>

Is there a parameter that I can add that will set this field to Read Only?
I want the Users to be able to see the field but not Edit it.
 
Ok, but I cannot seem to find any documentation on where.
The code line looks like

<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left"></font></td>

Where does the "readonly" go?
 
Frank said:
Ok, but I cannot seem to find any documentation on where.
The code line looks like

<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left"></font></td>

Where does the "readonly" go?

Not an MVP, but I can answer that one

<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left" readonly="readonly"></font></td>

or a shorthand is
<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left" readonly></font></td>
 
much appreciated.....
Not an MVP, but I can answer that one

<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left" readonly="readonly"></font></td>

or a shorthand is
<input name="phone" size="50" value="<%=FP_FieldVal(fp_rs,"phone")%>"
style="float: left" readonly></font></td>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

DBR Form 1
DBR cell w/hyperlink ? 4
Parameter in DBR 6
Form Auto Submit? 1
DBR Fails for some 2
DBR field as default value on form 3
Adding DRW field values 2
numeric db update 4

Back
Top