Sorry accidentally replied to the wrong message so this was in the wrong thread... here it is again.
You just add list items to the list like this:
<ww:wwWebDropDownListID="lstList"runat='server'> <asp:ListItemvalue="1">Item1</asp:ListItem><asp:ListItemValue="2">item2</asp:ListItem><asp:ListItemValue="3" Selected="True">Item3</asp:ListItem></ww:wwWebDropDownList>
You can find more info here:
If the list is static and you don't need to capture the value on a Postback you can also use plain HTML for the list:
<selectid="lstList"name="lstList"><livalue="1">Item 1</li><livalue="2" selected="selected">Item 2</li></select>
Hope this helps,
+++ Rick ---