The evaluation would have to be in the page the form is sending that form field (RTG_RQS) to
- or if sending to a database your database would have a field named RTG_RQS to accept it along with all your other fields
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________
Here is the code for one of the dropdown boxes:
<!--webbot bot="Validation" s-display-name="Registered Quality System"
b-value-required="TRUE" b-disallow-first-item="TRUE" --><select size="1"
name="RTG_RQS" tabindex="7">
<option selected>< SELECT ONE ></option>
<option value="0">No</option>
<option value="1">Compliant</option>
<option value="2">Yes</option>
But I have no code to evaluate. I'm guessing that is the issue? I merely
swapped out textbox form dropdown.
:
Post the code snippet from your form generating the dropdown from the results wizard
- and the snippet of code trying to evaluate it
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________
I have checked the values, and everything appears to looks correct. The
fact that this is an update page (results with in a form), this should be
working?
David
:
If your dropdown had correct values it would work
<option value="2">Approved</option>
<option value="1">Limited</option>
<option value="0">Not Approved</option>
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________
Ok, example...I have an entry form with one dropdown box with 3 options:
Approved, value = 2
Limited, value = 1
Not Approved, value = 0
I created my edit page and then substituted the textbox for the dropdown
having the same options as above (same as entry). The dropdown did not show
the value (selection) as when it was entered.
I had tested the pages prior to making changes, and all the data was passing
fine. So I'm thinking that the dropdown will not display as entered (text,
not numerical).
David
:
Assuming no additional validation:
Text area - unlimited freeform text input
Text box - Freeform text input limited to 255 characters
Select/dropdown - Select from options, no freeform input.
All these are interchangeable, but have different functions as indicated.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
I have created an Edit & Update page. On my entry page, I have used some
dropdown boxes to limit what can be entered. I realize that a Textbox can
be
swapped out with a Textarea. This has worked fine. But can the same be
done
with a Dropdown replacing a Textbox. This way I can still limit what is
be
entered.
David
.
.
.
.