Requiredfieldvalidator コントロールを formview itemtemplate に追加 (バインド) する方法は?
<tr runat="server" >
<td style="width: 120px">
<asp:Label Text="Purchase Org.:" ID="LabelPurchOrg1" runat="server"> </asp:Label>
</td>
<td>
<orbit:Control runat="server" ID="Purch" Text='<%# Eval("Site")%>' LabelPosition="Right" CssClassLabel="SectionTextLookup" RenderTextBoxAsLabel="true" EnableLabel="true" EnableTooltip="true" LookupCommand="sit" />
<asp:RequiredFieldValidator ID="PurchaseOrg" runat="server" ControlToValidate='<%# Eval("Site") %>' ErrorMessage="<" EnableClientScript="false" Enabled="false" >
</asp:RequiredFieldValidator>
</td>
</tr>
</table>
</ItemTemplate>