<asp:DropDownList runat="server" ID="CatDropDown" Width="300px" DataTextField="Name" DataValueField="CategoryID" CssClass="TextBox" AutoPostBack="True" OnSelectedIndexChanged="CatDropDown_IndexChanged"></asp:DropDownList>上面控件绑定了 数据库中的数据,DataView myDV = Business.Category.GetCategories().Tables[0].DefaultView;
CatDropDown.DataSource = myDV;
CatDropDown.DataBind();我想再其下拉框中加入<option value=0>全部</option>需要如何操作