Form results as HTML

Out of context: Reply #9

  • Started
  • Last post
  • 9 Responses
  • mg330

    Just filling you guys in on the solution to my problem.

    I looked into the Server.HTMLEncode extensively, even found people having the same problem as me with the same ASP application.

    The existance of Server.HTMLEncode in the file is what causes the problem. It was PREVENTING the ASP page from pulling the data from Access and displaying HTML formatting.
    Simply taking that out for the section I needed to be formatted solved it. There was a variable that controlled it, and it was this:

    SetVar "address", ToHTML(fldaddress)

    Simply taking that out and changing to:
    SetVar "address", fldaddress

    solved the problem.

    Much thanks for your help, you pointed me in the right direction.

View thread