<asp:DropDownList runat="server"> <asp:ListItem Value="1001">1001</asp:ListItem> </asp:DropDownList>
想将value的值使用后台的常量来代替。
必须使用服务器控件。
DropDownList控件怎么连ID都没有。
代码如下:
DropDownList.Items.FindByValue("1001").Value = "后台的常量";
呵呵,只是一个简单的原型。
现在想写在前台。