I have a control that refrences an EDC (added to the list as a lookup) that I have added to an application page via the following markup:
<SharePoint:FormField runat="server"
id="Industry"
ControlMode="New"
FieldName="Industry"
/>
The problem is that it is outputting the this HTML (notice the value attributes):
<select name="bigLongName" id="bigLongId" title="Industry">
<option value="0">Compact Machine Solutions</option>
<option value="0">Earthmoving Excavating</option>
<option value="0">Earthmoving Grading</option>
<option value="0">Paving</option>
<option selected="selected" value="0">Terrain</option>
</select>
What have I done wrong here?