I am getting an error when I try to look at the Design View of Repository.ascx. The error is as follows:
"Could not open in Design View. Quote values differently inside a '<% ... "value" ...%>' block."
I traced the error to this line in the HTML view:
<script src="<%= Page.ResolveURL("DesktopModules/Repository/js/pngfix.js") %></script>
If I change the line to this:
<script src="<%= Page.ResolveURL('DesktopModules/Repository/js/pngfix.js') %></script>
Then I can see the Design View, which isn't much.
When I then go back to my site, I get a Min/Max Error on the Repository module. So clearly the change from " to ' doesn't work.
I expect that this is related to an IDE bug in Visual Studios and since you can "skin" the Repository module I need not be concerned. I just want to make sure everything is functioning fine and normal before I add some stuff to the source code.
Thank You,
Stuart