html
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 03:06 AM - edited 02-15-2024 03:07 AM
give me the solution
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<a href="https://dev16.service-now.com/esc?id=take_survey&type_id=e75e764a47d4021001062398c26d43ca"> survey link</a>
</j:jelly>
It gives the error like :
Error at line (3) The reference to entity "type_id" must end with the ';' delimiter.
What to do
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 03:13 AM
'<a href="' +link + '">' + 'Please click here to take Survey' + '</a>';
*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 05:32 AM
Please change the line 3 to
<a href="https://dev16.service-now.com/esc?id=take_survey&type_id=e75e764a47d4021001062398c26d43ca"> survey link</a>
and try. When the parser sees "&", it thinks you have an encoded entity, and expects a terminating ";" ,thus the error.
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.