escape

  1. N

    Question How can I extract and display line breaks from SQL text into .NET 4 VB label

    In classic ASP, I was able to use this VB code to find carriage returns in SQL query results and add them as Line Breaks to displayed text. <% Dim Notes Notes = escape(WorkOrderDetails.Fields.Item("note_text").Value) Notes = Replace(Notes, "%0D", "<br>") Notes = unescape(Notes) %> <td...
Back
Top