Click here to Skip to main content
15,884,473 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi All,

I have HTML page with the vbscript code that navigates to the other page
HTML
<div class="leftnavdiv">
<ul class="leftnav">
<li>
<a href="<%= Application(" siteurl=") %>results.asp?sourceID=go&txtKeyword=">
View All Nonprofits</a>
</li>
</ul>
</div>


But i am getting an error like this "Character '< ', hexadecimal value 0x3c is illegal in XML attribute value "
What does that mean.Any solution for this kind of error.I am not into vbscript.

Thanks,
Priya.
Posted
Updated 15-Jun-12 19:06pm
v2
Comments
Sergey Alexandrovich Kryukov 15-Jun-12 21:43pm    
Any special reason to use VBScript? It's proprietary; the standard is only JavaScript, so don't do a bad thing, to start with.
--SA

1 solution

if the error is referring to valid xml mark-up then try using "& lt;" (without spaces) instead of "<" in your xml string.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900