GridView with DropDownList – Server tag is not well formed.

Ran across an issue today when trying to get my DropDownList embedded within a GridView.   Here is an extract of the code (the error is in the red text): <ItemTemplate>   <asp:DropDownList ID=”ddlMaker” runat=”server” DataSourceID=”odsMakers” DataTextField=”makerName” SelectedValue=”<%#Bind(“MakerID”) %>”   DataValueField=”makerID”>   </asp:DropDownList> </ItemTemplate> When I compiled I received an error “The server tag is not well formed.” After a bit … Read More