Using MS SqlSvr2k DB and ASP to display via web browser.
When the field (data) contains "<full bal", the ASP page stops displaying the data and continues to the next part of the page.
Example data: SETTLED FOR <FULL BAL
Example result: SETTLED FOR
ASP code: <%
if Not objRst.bof And Not objRst.eof Then
dim rs1
set rs1 = server.createObject("ADODB.Recordset")
rs1.ActiveConnection = Application("DBConnString")
rs1.source = "Select * from SpecialResults where OrderID = " & ID
rs1.Open
if not rs1.eof then
rs1.movefirst
%>
<TR><TD valign="top" colspan="2"><FONT FACE="Arial" SIZE=-1><pre><%=rs1("results")%></pre></font></TD></TR>
<%
end if
End If
rs1.close
set rs1 = nothing
%>
How can I trap or bypass this and make the page display the entire field contents?
TIA
Cole
When the field (data) contains "<full bal", the ASP page stops displaying the data and continues to the next part of the page.
Example data: SETTLED FOR <FULL BAL
Example result: SETTLED FOR
ASP code: <%
if Not objRst.bof And Not objRst.eof Then
dim rs1
set rs1 = server.createObject("ADODB.Recordset")
rs1.ActiveConnection = Application("DBConnString")
rs1.source = "Select * from SpecialResults where OrderID = " & ID
rs1.Open
if not rs1.eof then
rs1.movefirst
%>
<TR><TD valign="top" colspan="2"><FONT FACE="Arial" SIZE=-1><pre><%=rs1("results")%></pre></font></TD></TR>
<%
end if
End If
rs1.close
set rs1 = nothing
%>
How can I trap or bypass this and make the page display the entire field contents?
TIA
Cole