Guest User

Untitled

a guest
Jun 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <asp:TemplateField HeaderText="Your Ethnicity">
  2. <EditItemTemplate>
  3. <asp:DropDownList ID="ddlEthnicity" runat="server"
  4. DataSourceid="ddlDAEthnicity"
  5. DataTextField="Ethnicity" DataValueField="EthnicityID"
  6. SelectedValue='<%#Bind("EthnicityID") %>'
  7. >
  8. </asp:DropDownList>
  9. </EditItemTemplate>
  10. <ItemTemplate >
  11. <asp:Label Runat="server" Text='<%# Bind("Ethnicity") %>'
  12. ID="lblEthnicity">
  13. </asp:Label>
  14. </ItemTemplate>
  15. </asp:TemplateField>
Add Comment
Please, Sign In to add comment