Search results for query: *

  1. N

    Question Need Help with imageButton rollover image inside repeater

    I'm trying to add roll-over images to my imageButtons inside a repeater using the various techniques I've found online. Essentially, my initial artwork ends in I.png and my hover artwork ends in H.png. All of the paths and attributes are being inserted correctly. From the Page...
  2. N

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

    Thanks, that did it! (And I shall never confuse the two again)
  3. 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