Skip to main content
March 22, 2013
Answered

# in my data

  • March 22, 2013
  • 1 reply
  • 674 views

When i get data from DB...data contains #

Example : VB#

when i pass this data on url...not passing whole data.

lanvar = "beginner VB#"

mypage.cfm?lan=#lanvar#

how can fix this issue?

    This topic has been closed for replies.
    Correct answer 12Robots

    mypage.cfm?lan=#urlEncodedFormat(lanvar)#

    jason


    1 reply

    12Robots
    12RobotsCorrect answer
    Participating Frequently
    March 22, 2013

    mypage.cfm?lan=#urlEncodedFormat(lanvar)#

    jason


    March 22, 2013

    thanks i tried urlEncodedFormat

    do i need to decodeurl in next page?

    12Robots
    Participating Frequently
    March 22, 2013

    If I recall correctly, it will be automatically decoded when placed in the URL scope. Try it and find out.

    jason