see here http://community.codesmithtools.com/forums/thread/18699.aspx
if you want to wire up a dropdownlist though you should try using the new EntityDropDownList with a strongly typed data source as these are a piece of cake to wire up...
<data:EntityDropDownList runat="server" ID="dataProductID" DataSourceID="ProductIDProductsDataSource" DataTextField="ProductName" DataValueField="ProductID" SelectedValue='<%# Bind("ProductID") %>' AppendNullItem="true" Required="true" NullItemText="< Please Choose ...>" ErrorText="Required" />
<data:ProductsDataSource ID="ProductIDProductsDataSource" runat="server" SelectMethod="GetAll" />
You can find them both in the WebLibrary.
hth
swin
-------------------------------------------------
Member of the .NetTiers team
-------------------------------------------------