我有三个日,月,年下拉列表
在每个下拉列表中我添加了以下代码行:
ddlDay.Items.FindByValue(System.DateTime.Now.AddDays(-1).Day.ToString()).Selected = true;
但我希望将其显示为
DD selected as in dropdown Day
MM selected as in dropdown Month
YYYY selected as in dropdown Year
我也用:
<asp:DropDownList ID="ddlMonth" runat="server" class="form-control">
<asp:ListItem Value="-1">MM</asp:ListItem>
</asp:DropDownList>
这些行每个下拉但不起作用
请帮帮我。谢谢你提前