我想从下拉列表中选择星期几,并计算接下来4周的日期。如何在asp.net C#中做到这一点? 这是我的代码片段
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>Monday</asp:ListItem>
<asp:ListItem>Tuesday</asp:ListItem>
<asp:ListItem>Wednesday</asp:ListItem>
<asp:ListItem>Thrusday</asp:ListItem>
<asp:ListItem>Friday</asp:ListItem>
<asp:ListItem>Saturday</asp:ListItem>
<asp:ListItem>Sunday</asp:ListItem>
</asp:DropDownList>
<br/>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
<br/>
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>