Copy link to clipboard
Copied
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?
mypage.cfm?lan=#urlEncodedFormat(lanvar)#
jason
Copy link to clipboard
Copied
mypage.cfm?lan=#urlEncodedFormat(lanvar)#
jason
Copy link to clipboard
Copied
thanks i tried urlEncodedFormat
do i need to decodeurl in next page?
Copy link to clipboard
Copied
If I recall correctly, it will be automatically decoded when placed in the URL scope. Try it and find out.
jason