It failed in Mozilla because <option value> is not the valid syntax. IE ignores the error and returns the content.
But for Mozilla, this is invalid syntax, so no values are returned.
Following are valid syntax:
<option>TEST</option>
<option value = "1">TEST</option> (If text/value is different)
Below code can also be written as:
<option><%= objRS.Fields("lclas") %></option>
instead of
<option value= "<%=objRS.Fields("lclas")%>"><%=objRS.Fields("lcla s")%></option>
Om Prakash
|