I'm seeing some very strange behavior when using Visual InterDev's "Release Working Copy" feature.
I have an asp page with some variables defined as follows:
Then we have this:
You'll notice ""e;" all over the place. When I first TYPED it, I had QUOTES there, but when I do release working copy, somehow the quotes change to "e;.This does not happen to all quotes on the page, only a select handful. Anyone ever experienced anything like this? I tried making a new page with the above code and it did not exhibit this behavior, so there may be something else in the page doing it, but it's 4,000 lines so first I'd like to know if this is remotely familiar to anyone.
I have an asp page with some variables defined as follows:
Code:
<%TESTTD="<TD align='right'><FONT FACE='Arial, Helvetica' SIZE='1' color='gray'>%>
<%TESTENDTD=" </font></td><TD><FONT SIZE='1' FACE='Arial, Helvetica'><INPUT TYPE='Text' NAME="%>
Code:
<%=TESTTD%>PostTest
<%=TESTENDTD%>"PaymentPostingDate<%=rs("PaymentID")%>" ID="PaymentPostingDate<%=rs("PaymentID")%>" <%=ChkReadOnly%> VALUE="<%=PaymentPostingDate%>" onblur="ValidPostDate(<%=rs("PaymentID")%>)" style="height:18px; padding-top:0px;" size="7" MAXLENGTH="10" />
</font>
</td>