We have asp: DropDownList, which we populate on the server side
ddlBranch.Items.Add(new ListItem("TEST","This is a test"));
When it compiles and runs under .NET 3.5, we see the text "This is a test"
However, when it compiles and runs under .NET 4.0, we see the text "This is a test ' "
We added the following to our web.config, and there were no changes.
<pages controlRenderingCompatibilityVersion="3.5" />
We are currently back to .NET 3.5, however we would like to know if there is a way around this or if this is a known rendering or design issue.
TIA
Aj
source share