Do not want Less than & greater than

Discussion in 'Classic ASP' started by m1234, Aug 13, 2009.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I am trying to create a group email list to be pasted into an email program with this format:
    "Bill. Jones" <[email protected]>, "A. Smith" <[email protected]>, etc.

    The asp code is using the < > symbols to operate on the email field (string) and the result looks like this:

    "Bill Jones" ,A. Smith: , etc.

    If I change the field to a date field then the results show <thedate>

    I merely want a literal character < or >.

    Below is my code:
    <% response.write CHR(34) & rs("first") & " " & rs("last") & CHR(34) & "<" & rs("email") & ">" & ", " %>
     
  2. Thanks Raymond. That did the trick!
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page