asp.net - Visual Studio 2010 bug - editor -



asp.net - Visual Studio 2010 bug - editor -

i ran unusual behavior in vs2010 sp1 ide. when modify aspx page viewing markup, duplication in nearby controls.

for example, have dropdownlist command looks this:

<asp:dropdownlist id="cbopreviousphone" width="350px" cssclass="entrytext"></asp:dropdownlist>

directly above it, add together table tags. when add together tr tags, id of dropdown list changes this:

<asp:dropdownlist id="cbopreviousphor" width="350px" cssclass="entrytext"></asp:dropdownlist>

if type "tr1234" in tag instead, dropdown changes this:

<asp:dropdownlist id="cbopreviousphotr1234r" width="350px" c`ssclass="entrytext">/asp:dropdownlist>

i tried project on machine , same thing. deleted designer file, same thing.

any ideas why this?

asp.net visual-studio visual-studio-2010

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -