Karl Blessing
Programmer
I have a bunch of constants, and I Want the user to be able to preview their value, however, since the value retrived looks like this
[tt]
"bgcolor=" & chr(34) & "#000000" & chr(34)
[/tt]
I cannot sucessfully get it to work in
[tt]
Response.Write "<TD " & SplitThem(1) & "> </TD>" & vbcrlf
[/tt]
which in turn would make my HTML look like this.
[tt]
<TD "bgcolor=" & chr(34) & "#ffffff" & chr(34)> </TD>
[/tt]
is there any way to "VB"Encode the string, so that the text meant to be processed when normally used in a constant, gets encoded when I put it into a preview like above.
(HTMLEncode becomes useful when I Want show the value out to the screen before previewing)
[sig]<p>Karl<br><a href=mailto:kb244@kb244.com>kb244@kb244.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
[/sig]
[tt]
"bgcolor=" & chr(34) & "#000000" & chr(34)
[/tt]
I cannot sucessfully get it to work in
[tt]
Response.Write "<TD " & SplitThem(1) & "> </TD>" & vbcrlf
[/tt]
which in turn would make my HTML look like this.
[tt]
<TD "bgcolor=" & chr(34) & "#ffffff" & chr(34)> </TD>
[/tt]
is there any way to "VB"Encode the string, so that the text meant to be processed when normally used in a constant, gets encoded when I put it into a preview like above.
(HTMLEncode becomes useful when I Want show the value out to the screen before previewing)
[sig]<p>Karl<br><a href=mailto:kb244@kb244.com>kb244@kb244.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
[/sig]