我最近在VS2010 SP1 IDE中遇到了一个奇怪的行为。当我修改查看标记的aspx页面时,我在附近的控件中得到重复。
例如,我有一个Dropdownlist控件,如下所示:
<asp:DropDownList ID="cboPreviousPhone" Width="350px" CssClass="EntryText"></asp:DropDownList>
在它正上方,我添加了表格标签。当我添加tr标签时,下拉列表的ID更改为:
<asp:DropDownList ID="cboPreviousPhor" Width="350px" CssClass="EntryText"></asp:DropDownList>
如果我在代码中输入“tr1234”,则下拉列表会更改为:
<asp:DropDownList ID="cboPreviousPhotr1234r" Width="350px" C`ssClass="EntryText">/asp:DropDownList>
我在另一台机器上尝试了这个项目并得到了同样的东西。删除了设计师文件,同样的事情。
为什么会这样做?