Hi all,
I have a multiple edit page displaying all of the records for a given month.
The user can edit one part or every record without problem
Except...
On two drop down box's, named txtSales1 & txtSales 2, I have the properties listed below. Now it will initially show the record it was inserted with perfectly fine, and the drop down will show all available choices to select.
However when I update it - the record will turn from like Dorchester, D to just D.
Is it the , that is doing it? any work around at all?
Thank you.
<select name="txtSales1" class="inputbox">
<option value="<%=rsResults("fldSales1"
%>" selected><%=rsResults("fldSales1"
%></option>
<%
While (NOT rsSales.EOF)
%>
<option value="<%=(rsSales.Fields.Item("fldSalesName"
.Value)%>" ><%=(rsSales.Fields.Item("fldSalesName"
.Value)%></option>
<%
rsSales.MoveNext()
Wend
If (rsSales.CursorType > 0) Then
rsSales.MoveFirst
Else
rsSales.Requery
End If
%>
</select> "Damn the torpedoes, full speed ahead!"
-Adm. James Farragut
Stuart
I have a multiple edit page displaying all of the records for a given month.
The user can edit one part or every record without problem
Except...
On two drop down box's, named txtSales1 & txtSales 2, I have the properties listed below. Now it will initially show the record it was inserted with perfectly fine, and the drop down will show all available choices to select.
However when I update it - the record will turn from like Dorchester, D to just D.
Is it the , that is doing it? any work around at all?
Thank you.
<select name="txtSales1" class="inputbox">
<option value="<%=rsResults("fldSales1"
<%
While (NOT rsSales.EOF)
%>
<option value="<%=(rsSales.Fields.Item("fldSalesName"
<%
rsSales.MoveNext()
Wend
If (rsSales.CursorType > 0) Then
rsSales.MoveFirst
Else
rsSales.Requery
End If
%>
</select> "Damn the torpedoes, full speed ahead!"
-Adm. James Farragut
Stuart