我正在尝试更改 ASP 下拉列表,当它们保存时,无论我调试、构建、保存、全部保存。更改不会呈现。列表项是相同的。请协助,为什么更改未反映在解决方案中。
<tr>
<td><asp:Label ID="Lblsection" runat="server" Text="Section:"></asp:Label></td>
<td><asp:DropDownList ID="dpsection" runat="server" Height="54px" Width="199px">
<asp:ListItem>Dependency Section</asp:ListItem>
<asp:ListItem>Service Record Books Section</asp:ListItem>
<asp:ListItem>Customer Service Support Section</asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
Text="Please select a section" ControlToValidate="dpsection"
InitialValue="***SELECT ONE***"></asp:RequiredFieldValidator></td>